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 125d409 commit 62a714eCopy full SHA for 62a714e
python/cocoindex/flow.py
@@ -484,7 +484,7 @@ def _render_spec(self, verbose: bool = False) -> Tree:
484
tree = Tree(f"Flow: {self.name}", style="cyan")
485
486
def build_tree(label: str, lines: list):
487
- node = Tree(label, style="bold magenta" if lines else "cyan")
+ node = Tree(label=label if lines else label + " None", style="cyan")
488
for line in lines:
489
child_node = node.add(Text(line.content, style="yellow"))
490
child_node.children = build_tree("", line.children).children
0 commit comments