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 b306a01 commit 71c980bCopy full SHA for 71c980b
src/fastapi_cli/config.py
@@ -25,7 +25,7 @@ def _read_pyproject_toml(cls) -> Dict[str, Any]:
25
except ImportError:
26
try:
27
import tomli as tomllib # type: ignore[no-redef, import-not-found, unused-ignore]
28
- except ImportError:
+ except ImportError: # pragma: no cover
29
logger.debug("tomli not available, skipping pyproject.toml")
30
return {}
31
0 commit comments