Skip to content

Commit 976ee3d

Browse files
committed
Remove print statements and leftover comments
1 parent dd57c18 commit 976ee3d

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/fhda/data_analysis_env.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ async def reset(self) -> tuple[Messages, list[Tool]]:
8080
Messages,
8181
messages,
8282
)
83-
print(messages)
84-
print(tools)
83+
8584
return init_obs, tools
8685

8786
async def submit_answer(self, answer: str) -> str: # type: ignore[override]

src/fhda/notebook_env.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,6 @@ def list_workdir(self) -> str:
257257
"""
258258
return json.dumps(self._list_dir(self.state.work_dir), indent=2)
259259

260-
# allowing int so that agent doesn't try to force to float
261260
def submit_answer(self, answer: str) -> str: # noqa: PYI041
262261
"""Submit an answer to the problem.
263262

0 commit comments

Comments
 (0)