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