Skip to content

Commit 1064b68

Browse files
author
Xu
committed
fix minor bug
1 parent a8d6328 commit 1064b68

File tree

1 file changed

+2
-2
lines changed
  • rdagent/scenarios/data_science/dev/runner

1 file changed

+2
-2
lines changed

rdagent/scenarios/data_science/dev/runner/eval.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def evaluate(
7777

7878
stdout = implementation.execute(
7979
env=env, entry=get_clear_ws_cmd()
80-
) # Remove previous submission and scores files generated by worklfow.
80+
) # Remove previous submission and scores files generated by workflow.
8181

8282
# get previous runner loops
8383
task_info = target_task.get_task_information()
@@ -88,7 +88,7 @@ def evaluate(
8888
[
8989
knowledge
9090
for knowledge in queried_former_failed_knowledge[0]
91-
if knowledge.implementation.file_dict.get("main.py") != workspace.file_dict.get("main.py")
91+
if knowledge.implementation.file_dict.get("main.py") != implementation.file_dict.get("main.py")
9292
],
9393
queried_former_failed_knowledge[1],
9494
)

0 commit comments

Comments
 (0)