Skip to content

Commit 1b10c9d

Browse files
committed
Fix types
1 parent 2c19e32 commit 1b10c9d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async def list(
3737
cls,
3838
query: Optional[SandboxQuery] = None,
3939
**opts: Unpack[ApiParams],
40-
) -> List[ListedSandbox]:
40+
) -> List[SandboxInfo]:
4141
"""
4242
List all running sandboxes.
4343

packages/python-sdk/e2b/sandbox_sync/sandbox_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def list(
3737
cls,
3838
query: Optional[SandboxQuery] = None,
3939
**opts: Unpack[ApiParams],
40-
) -> List[ListedSandbox]:
40+
) -> List[SandboxInfo]:
4141
"""
4242
List all running sandboxes.
4343

0 commit comments

Comments
 (0)