File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ def process_dir(path: Path) -> None:
5858 linter = json .loads (linter_txt )
5959
6060 lint_info = {r ["prefix" ]: r ["name" ] for r in linter if r ["prefix" ] not in {"" , "F" }}
61+ lint_info = dict (sorted (lint_info .items ()))
6162
6263 selected_items = {k : v for k , v in lint_info .items () if k in selected }
6364 all_uns_items = {k : v for k , v in lint_info .items () if k not in selected }
@@ -85,8 +86,8 @@ def print_each(items: dict[str, str]) -> Iterator[str]:
8586 )
8687 uns = "\n " .join (print_each (unselected_items ))
8788
89+ print (Columns ([panel_sel , panel_lib , panel_spec ]))
8890 if uns :
89- print (Columns ([panel_sel , panel_lib , panel_spec ]))
9091 print ("[red]Unselected [dim](copy and paste ready)" )
9192 print (uns )
9293
You can’t perform that action at this time.
0 commit comments