Skip to content

Commit 70c84cb

Browse files
authored
Merge pull request #381 from D-X-Y/main
Fix print issue
2 parents da59b35 + 968930e commit 70c84cb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

qlib/contrib/workflow/record_temp.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ def generate(self, segments: Dict[Text, Any], save: bool = False):
5050
save_name = "results-{:}.pkl".format(key)
5151
self.recorder.save_objects(**{save_name: results})
5252
logger.info(
53-
"The record '{save_name}' has been saved as the artifact of the Experiment {self.recorder.experiment_id}"
53+
"The record '{:}' has been saved as the artifact of the Experiment {:}".format(
54+
save_name, self.recorder.experiment_id
55+
)
5456
)
5557

5658

0 commit comments

Comments
 (0)