Skip to content

Commit 07695ae

Browse files
committed
Revert
1 parent 2bdabd8 commit 07695ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openhexa/cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ def pipelines_list():
603603
click.echo("Pipelines:")
604604
for pipeline in workspace_pipelines:
605605
if pipeline.type == "zipFile":
606-
current_version = "N/A" if not pipeline.current_version else f"v{pipeline.current_version.version_number}"
606+
current_version = f"v{pipeline.current_version.version_number}" if pipeline.current_version else "N/A"
607607
else:
608608
current_version = "Jupyter notebook"
609609
click.echo(f"* {pipeline.code} - {pipeline.name} ({current_version})")

0 commit comments

Comments
 (0)