Skip to content

Commit 9c95627

Browse files
committed
print as string
1 parent ae99408 commit 9c95627

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

metaflow/click_api.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def _method(_self, **kwargs):
357357
alpha=3,
358358
myfile="path/to/file",
359359
)
360-
print(command)
360+
print(" ".join(command))
361361

362362
command = (
363363
api(metadata="local")
@@ -368,10 +368,10 @@ def _method(_self, **kwargs):
368368
code_package_url="some_url",
369369
)
370370
)
371-
print(command)
371+
print(" ".join(command))
372372

373373
command = api().tag().add(tags=["abc", "def"])
374-
print(command)
374+
print(" ".join(command))
375375

376376
command = getattr(api(decospecs=["retry"]), "argo-workflows")().create()
377-
print(command)
377+
print(" ".join(command))

0 commit comments

Comments
 (0)