Skip to content

Commit fe79ece

Browse files
committed
Making lines easier to read.
1 parent 2ca6acd commit fe79ece

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,16 +187,19 @@ for convo Conversation.find_all(type='admin', id=7, open=True):
187187
# Iterate over closed conversations assigned to an admin
188188
for convo Conversation.find_all(type='admin', id=7, open=False):
189189
...
190-
# Iterate over closed conversations for assigned an admin, before a certain moment in time
190+
# Iterate over closed conversations for assigned an admin, before a certain
191+
# moment in time
191192
for convo in Conversation.find_all(
192193
type='admin', id= 7, open= False, before=1374844930):
193194
...
194195

195196
# FINDING CONVERSATIONS FOR A USER
196-
# Iterate over all conversations (read + unread, correct) with a user based on the users email
197+
# Iterate over all conversations (read + unread, correct) with a user based on
198+
# the users email
197199
for convo in Conversation.find_all(email='joe@example.com',type='user'):
198200
...
199-
# Iterate over through all conversations (read + unread) with a user based on the users email
201+
# Iterate over through all conversations (read + unread) with a user based on
202+
# the users email
200203
for convo in Conversation.find_all(
201204
email='joe@example.com', type='user', unread=False):
202205
...

0 commit comments

Comments
 (0)