Skip to content

Commit 7be1034

Browse files
committed
Remove type ignore
1 parent 25e2487 commit 7be1034

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • packages/python-sdk/e2b/sandbox_async

packages/python-sdk/e2b/sandbox_async/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ async def set_timeout(
355355
...
356356

357357
@class_method_variant("_cls_set_timeout")
358-
async def set_timeout( # type: ignore
358+
async def set_timeout(
359359
self,
360360
timeout: int,
361361
**opts: Unpack[ApiParams],
@@ -368,6 +368,7 @@ async def set_timeout( # type: ignore
368368
The maximum time a sandbox can be kept alive is 24 hours (86_400 seconds) for Pro users and 1 hour (3_600 seconds) for Hobby users.
369369
370370
:param timeout: Timeout for the sandbox in **seconds**
371+
:param opts
371372
"""
372373
await self._cls_set_timeout(
373374
sandbox_id=self.sandbox_id,

0 commit comments

Comments
 (0)