We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34e33a3 commit 55c959eCopy full SHA for 55c959e
packages/python-sdk/e2b/sandbox/main.py
@@ -48,7 +48,10 @@ def __init__(
48
self.__sandbox_domain = sandbox_domain or self.connection_config.domain
49
self.__envd_version = envd_version
50
self.__envd_access_token = envd_access_token
51
- self.__envd_api_url = envd_api_url or f"{'http' if self.connection_config.debug else 'https'}://{self.get_host(self.envd_port)}"
+ self.__envd_api_url = (
52
+ envd_api_url
53
+ or f"{'http' if self.connection_config.debug else 'https'}://{self.get_host(self.envd_port)}"
54
+ )
55
self.__mcp_token: Optional[str] = None
56
57
@property
0 commit comments