diff --git a/src/fastapi_cli/config.py b/src/fastapi_cli/config.py index 1a8b84d8..71a2e39b 100644 --- a/src/fastapi_cli/config.py +++ b/src/fastapi_cli/config.py @@ -13,7 +13,7 @@ class FastAPIConfig(BaseModel): @classmethod def _read_pyproject_toml(cls) -> dict[str, Any]: - """Read FastAPI configuration from pyproject.toml in current directory.""" + """Read FastAPI configuration from pyproject.toml in the current directory.""" pyproject_path = Path.cwd() / "pyproject.toml" if not pyproject_path.exists():