Update 2025-04-13_16:27:10
This commit is contained in:
13
venv/lib/python3.11/site-packages/fastapi/cli.py
Normal file
13
venv/lib/python3.11/site-packages/fastapi/cli.py
Normal file
@ -0,0 +1,13 @@
|
||||
try:
|
||||
from fastapi_cli.cli import main as cli_main
|
||||
|
||||
except ImportError: # pragma: no cover
|
||||
cli_main = None # type: ignore
|
||||
|
||||
|
||||
def main() -> None:
|
||||
if not cli_main: # type: ignore[truthy-function]
|
||||
message = 'To use the fastapi command, please install "fastapi[standard]":\n\n\tpip install "fastapi[standard]"\n'
|
||||
print(message)
|
||||
raise RuntimeError(message) # noqa: B904
|
||||
cli_main()
|
Reference in New Issue
Block a user