Skip to content

Commit 007e2e5

Browse files
authored
Merge pull request #54 from e2b-dev/fix-bug-in-e2b-incompability
Fix bug in e2b incompatibility
2 parents bfa1170 + 5493595 commit 007e2e5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.changeset/silver-years-bake.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@e2b/code-interpreter-python': patch
3+
---
4+
5+
Remove bug in init method

python/e2b_code_interpreter/code_interpreter_async.py

-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@ class AsyncSandbox(BaseAsyncSandbox):
5757

5858
default_template = DEFAULT_TEMPLATE
5959

60-
def __init__(self, sandbox_id: str, connection_config: ConnectionConfig):
61-
super().__init__(sandbox_id=sandbox_id, connection_config=connection_config)
62-
6360
@property
6461
def _jupyter_url(self) -> str:
6562
return f"{'http' if self.connection_config.debug else 'https'}://{self.get_host(JUPYTER_PORT)}"

0 commit comments

Comments
 (0)