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 7e9ce2e commit 412d5cbCopy full SHA for 412d5cb
python/cocoindex/cli.py
@@ -177,8 +177,7 @@ def ls(app_target: str | None):
177
click.echo("No persisted flow setups found in the backend.")
178
return
179
180
- persisted_flow_names = set(persisted_flow_names)
181
- for name in persisted_flow_names:
+ for name in sorted(persisted_flow_names):
182
click.echo(name)
183
184
@cli.command()
0 commit comments