We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bdabd8 commit 07695aeCopy full SHA for 07695ae
1 file changed
openhexa/cli/cli.py
@@ -603,7 +603,7 @@ def pipelines_list():
603
click.echo("Pipelines:")
604
for pipeline in workspace_pipelines:
605
if pipeline.type == "zipFile":
606
- current_version = "N/A" if not pipeline.current_version else f"v{pipeline.current_version.version_number}"
+ current_version = f"v{pipeline.current_version.version_number}" if pipeline.current_version else "N/A"
607
else:
608
current_version = "Jupyter notebook"
609
click.echo(f"* {pipeline.code} - {pipeline.name} ({current_version})")
0 commit comments