Skip to content

Commit 7ed9be5

Browse files
committed
missing package + better logging
1 parent 179312d commit 7ed9be5

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

eval_protocol/pytest/default_mcp_gym_rollout_processor.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,6 @@ def stop(self) -> None:
110110
pass
111111
self._log_file = None
112112

113-
if self._log_file_path and os.path.exists(self._log_file_path):
114-
try:
115-
os.remove(self._log_file_path)
116-
print(f"🧹 Cleaned up log file: {self._log_file_path}")
117-
except OSError:
118-
pass
119-
self._log_file_path = None
120-
121113
# Remove from active servers list
122114
if self in MCPServerManager._active_servers:
123115
MCPServerManager._active_servers.remove(self)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ fireworks = [
9898
box2d = [
9999
"swig",
100100
"gymnasium[box2d]>=0.29.0",
101+
"Pillow",
101102
]
102103

103104
[project.scripts]

0 commit comments

Comments
 (0)