Skip to content

Commit dcfd6bb

Browse files
committed
♻️ Refactor help text for entrypoint param
1 parent 9c0d904 commit dcfd6bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fastapi_cli/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def dev(
232232
typer.Option(
233233
"--entrypoint",
234234
"-e",
235-
help="The FastAPI app import string in the format 'module:app_name'.",
235+
help="The FastAPI app import string in the format 'some.importable_module:app_name'.",
236236
),
237237
] = None,
238238
proxy_headers: Annotated[
@@ -337,7 +337,7 @@ def run(
337337
typer.Option(
338338
"--entrypoint",
339339
"-e",
340-
help="The FastAPI app import string in the format 'module:app_name'.",
340+
help="The FastAPI app import string in the format 'some.importable_module:app_name'.",
341341
),
342342
] = None,
343343
proxy_headers: Annotated[

0 commit comments

Comments
 (0)