remove StripSubcommandHelpFormatter, StripHelpFormatter now handles commands + command groups.

This commit is contained in:
2026-03-01 01:04:54 +00:00
parent c642bbc1f2
commit b3cfc6bc4a
5 changed files with 8 additions and 24 deletions

View File

@@ -3,9 +3,9 @@ from typing import Annotated
from cyclopts import App, Argument, Parameter
from .context import Context
from .help import StripSubcommandHelpFormatter
from .help import StripHelpFormatter
app = App(name='gate', help_formatter=StripSubcommandHelpFormatter())
app = App(name='gate', help_formatter=StripHelpFormatter())
@app.meta.default