Skip to content

Commit 26ce08e

Browse files
authored
Update printer.print calls to match expected args (#779)
1 parent d24df8f commit 26ce08e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

models/turbine_models/custom_models/pipeline_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ def prepare_all(
452452
exit()
453453
for submodel in self.map.keys():
454454
if not self.map[submodel].get("vmfb"):
455-
self.printer.print("Fetching: ", submodel)
455+
self.printer.print(f"Fetching: {submodel}")
456456
self.export_submodel(
457457
submodel, input_mlir=self.map[submodel].get("mlir")
458458
)
@@ -557,7 +557,7 @@ def is_prepared(self, vmfbs, weights):
557557
if not any(x for x in missing.values()):
558558
ready = True
559559
else:
560-
self.printer.print("Missing files: ", missing)
560+
self.printer.print(f"Missing files: {missing}")
561561
ready = False
562562
return ready
563563

0 commit comments

Comments
 (0)