We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcc6ea8 commit 6371d0cCopy full SHA for 6371d0c
2 files changed
.changeset/fix-sandbox-not-found-msg.md
@@ -0,0 +1,5 @@
1
+---
2
+"@e2b/python-sdk": patch
3
4
+
5
+Fix sandbox not found error message in set_timeout
packages/python-sdk/e2b/sandbox_async/sandbox_api.py
@@ -146,7 +146,7 @@ async def _cls_set_timeout(
146
)
147
148
if res.status_code == 404:
149
- raise NotFoundException(f"Paused sandbox {sandbox_id} not found")
+ raise NotFoundException(f"Sandbox {sandbox_id} not found")
150
151
if res.status_code >= 300:
152
raise handle_api_exception(res)
0 commit comments