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 5ce0eff commit f9d914bCopy full SHA for f9d914b
1 file changed
src/fastapi_cli/cli.py
@@ -7,7 +7,6 @@
7
from rich import print
8
from rich.tree import Tree
9
from typing_extensions import Annotated
10
-from uvicorn.config import LOGGING_CONFIG
11
12
from fastapi_cli.config import FastAPIConfig
13
from fastapi_cli.discover import get_import_data, get_import_data_from_import_string
@@ -216,7 +215,7 @@ def _run(
216
215
root_path=root_path,
217
proxy_headers=proxy_headers,
218
forwarded_allow_ips=forwarded_allow_ips,
219
- log_config=get_uvicorn_log_config() if not log_config else str(log_config),
+ log_config=get_uvicorn_log_config() if not log_config else str(log_config),
220
)
221
222
0 commit comments