We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5325f3f commit 0b50d79Copy full SHA for 0b50d79
1 file changed
dtcli/ls.py
@@ -80,10 +80,15 @@ def list(
80
title_style="bold magenta",
81
)
82
table.add_column("Scopes")
83
+ matched = set()
84
for site in ["chime", "kko", "gbo", "hco"]:
85
for s in [_ for _ in results["scopes"] if site in _]:
86
table.add_row(s)
87
+ matched.add(s)
88
table.add_section()
89
+ other_scopes = [_ for _ in results["scopes"] if _ not in matched]
90
+ for s in other_scopes:
91
+ table.add_row(s)
92
console.print(table)
93
94
if "larger_datasets" in results.keys():
0 commit comments