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 b02dc02 commit c91e5a4Copy full SHA for c91e5a4
1 file changed
src/ape/_cli.py
@@ -60,6 +60,10 @@ def format_commands(self, ctx, formatter) -> None:
60
61
deflist.append((name, cmd.get_short_help_str(limit)))
62
63
+ if not deflist:
64
+ # NOTE: Avoid issue with empty sections (now Plugins installed)
65
+ continue
66
+
67
with formatter.section(gettext(f"{section_name} Commands")):
68
formatter.write_dl(deflist)
69
0 commit comments