Skip to content

Commit

Permalink
Fixed doc
Browse files Browse the repository at this point in the history
- Updated readme
- Updated ssechat.py docstring
  • Loading branch information
thelabcat committed May 4, 2024
1 parent 30e28e8 commit 2d50a0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ chat.clear_mailbox() #Erase messages that were still visible before we connected
msg = True
while msg:
msg = chat.next_chat_message() #Hangs until a new message arrives
msg = chat.next_chat_message #Hangs until a new message arrives
print(msg.user.username, ":", msg)
print("Chat has closed.")
Expand Down
2 changes: 1 addition & 1 deletion src/cocorum/ssechat.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
msg = True
while msg:
msg = chat.next_chat_message() #Hangs until a new message arrives
msg = chat.next_chat_message #Hangs until a new message arrives
print(msg.user.username, ":", msg)
print("Chat has closed.")
Expand Down

0 comments on commit 2d50a0a

Please sign in to comment.