Skip to content

Commit

Permalink
Update printer.print calls to match expected args (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
saienduri authored Jul 16, 2024
1 parent d24df8f commit 26ce08e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/turbine_models/custom_models/pipeline_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def prepare_all(
exit()
for submodel in self.map.keys():
if not self.map[submodel].get("vmfb"):
self.printer.print("Fetching: ", submodel)
self.printer.print(f"Fetching: {submodel}")
self.export_submodel(
submodel, input_mlir=self.map[submodel].get("mlir")
)
Expand Down Expand Up @@ -557,7 +557,7 @@ def is_prepared(self, vmfbs, weights):
if not any(x for x in missing.values()):
ready = True
else:
self.printer.print("Missing files: ", missing)
self.printer.print(f"Missing files: {missing}")
ready = False
return ready

Expand Down

0 comments on commit 26ce08e

Please sign in to comment.