Fix typo in api.py
Browse filesoccured -> occurred
- quora/api.py +1 -1
quora/api.py
CHANGED
@@ -368,7 +368,7 @@ class Client:
|
|
368 |
human_message_id = human_message["node"]["messageId"]
|
369 |
except TypeError:
|
370 |
raise RuntimeError(
|
371 |
-
f"An unknown error
|
372 |
|
373 |
# indicate that the current message is waiting for a response
|
374 |
self.active_messages[human_message_id] = None
|
|
|
368 |
human_message_id = human_message["node"]["messageId"]
|
369 |
except TypeError:
|
370 |
raise RuntimeError(
|
371 |
+
f"An unknown error occurred. Raw response data: {message_data}")
|
372 |
|
373 |
# indicate that the current message is waiting for a response
|
374 |
self.active_messages[human_message_id] = None
|