We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4732185 commit b1a792cCopy full SHA for b1a792c
1 file changed
src/strands_tools/apify.py
@@ -119,6 +119,8 @@ def _format_error(e: Exception) -> str:
119
"Rate limit exceeded. The Apify client retries automatically; "
120
"if this persists, reduce request frequency."
121
)
122
+ case None:
123
+ return f"Apify API error: {msg}"
124
case _:
125
return f"Apify API error ({status_code}): {msg}"
126
return str(e)
0 commit comments