Skip to content

Commit f734dde

Browse files
authored
fix: a small bug in exp_gen (microsoft#606)
1 parent 18c5ef2 commit f734dde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdagent/scenarios/data_science/proposal/exp_gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def _handle_missing_component(
195195
"""
196196
former_task_desc = (
197197
trace.hist[-1][0].pending_tasks_list[0][0].get_task_information()
198-
if len(trace.hist) > 0 and trace.hist[-1] is not last_successful_exp
198+
if len(trace.hist) > 0 and trace.hist[-1][0] is not last_successful_exp
199199
else None
200200
)
201201

0 commit comments

Comments
 (0)