Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
humpydonkey committed Jul 2, 2024
1 parent 4a04acc commit d39d61f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_agent/utils/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def restart_kernel(self) -> None:
def exec_cell(self, code: str) -> Execution:
if not self.interpreter.is_running():
raise ConnectionResetError(
"Remote sandbox is not closed unexpectedly. Please retry the operation."
"Remote sandbox is closed unexpectedly. Please retry the operation."
)
self.interpreter.set_timeout(_SESSION_TIMEOUT) # Extend the life of the sandbox
execution = self.interpreter.notebook.exec_cell(code, timeout=self.timeout)
Expand Down

0 comments on commit d39d61f

Please sign in to comment.