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.
-h
1 parent 0a81473 commit e891392Copy full SHA for e891392
src/fastapi_cli/cli.py
@@ -14,7 +14,9 @@
14
from .logging import setup_logging
15
from .utils.cli import get_rich_toolkit, get_uvicorn_log_config
16
17
-app = typer.Typer(rich_markup_mode="rich")
+app = typer.Typer(
18
+ rich_markup_mode="rich", context_settings={"help_option_names": ["-h", "--help"]}
19
+)
20
21
logger = logging.getLogger(__name__)
22
0 commit comments