fix a small bug (#524)

This commit is contained in:
Yuante Li
2025-01-20 12:19:21 +08:00
committed by GitHub
parent f78175b37a
commit e67b4ae493
+1 -1
View File
@@ -89,7 +89,7 @@ class DataScienceRDLoop(RDLoop):
def running(self, prev_out: dict[str, Any]):
exp: DSExperiment = prev_out["coding"]
if exp.next_component_required() is None:
new_exp = self.runner.run(exp)
new_exp = self.runner.develop(exp)
logger.log_object(new_exp, tag="running")
return new_exp
else: