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 47d2230 commit 7e9ce2eCopy full SHA for 7e9ce2e
.github/workflows/_test.yml
@@ -47,11 +47,11 @@ jobs:
47
run: |
48
source .venv/bin/activate
49
maturin develop
50
- - name: Type check
+ - name: Type check (mypy)
51
52
53
mypy python
54
- - name: Test
+ - name: Run tests
55
56
57
pytest python/cocoindex/tests
python/cocoindex/cli.py
@@ -177,7 +177,8 @@ def ls(app_target: str | None):
177
click.echo("No persisted flow setups found in the backend.")
178
return
179
180
- for name in sorted(persisted_flow_names):
+ persisted_flow_names = set(persisted_flow_names)
181
+ for name in persisted_flow_names:
182
click.echo(name)
183
184
@cli.command()
0 commit comments