Skip to content

Commit

Permalink
Fix typo in api.py
Browse files Browse the repository at this point in the history
occured -> occurred
  • Loading branch information
eltociear authored Apr 20, 2023
1 parent a485cfb commit b9cafe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quora/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def send_message(self, chatbot, message, with_chat_break=False, timeout=20):
human_message_id = human_message["node"]["messageId"]
except TypeError:
raise RuntimeError(
f"An unknown error occured. Raw response data: {message_data}")
f"An unknown error occurred. Raw response data: {message_data}")

# indicate that the current message is waiting for a response
self.active_messages[human_message_id] = None
Expand Down

0 comments on commit b9cafe8

Please sign in to comment.