diff --git a/api/core/sandbox/storage/noop_storage.py b/api/core/sandbox/storage/noop_storage.py index d67cade98b..d4f39ea9a7 100644 --- a/api/core/sandbox/storage/noop_storage.py +++ b/api/core/sandbox/storage/noop_storage.py @@ -6,10 +6,10 @@ class NoopSandboxStorage(SandboxStorage): """A no-op storage implementation that does nothing on mount/unmount.""" def mount(self, sandbox: VirtualEnvironment) -> bool: - return False + return True def unmount(self, sandbox: VirtualEnvironment) -> bool: - return False + return True def exists(self) -> bool: return False