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 7fef101 commit 7d92fc5Copy full SHA for 7d92fc5
python/cocoindex/cli.py
@@ -4,6 +4,7 @@
4
from rich.console import Console
5
6
from . import flow, lib
7
+from .flow import flow_names
8
from .setup import sync_setup, drop_setup, flow_names_with_setup, apply_setup_changes
9
from .runtime import execution_context
10
@@ -21,7 +22,7 @@ def ls(show_all: bool):
21
22
"""
23
List all flows.
24
- current_flow_names = [fl.name for fl in flow.flows()]
25
+ current_flow_names = flow_names()
26
persisted_flow_names = flow_names_with_setup()
27
remaining_persisted_flow_names = set(persisted_flow_names)
28
0 commit comments