From 2513618332245e6e36a34a1b71f3562cc8b2872c Mon Sep 17 00:00:00 2001 From: aoright <102943475+aoright@users.noreply.github.com> Date: Fri, 21 Aug 2026 09:43:12 +0800 Subject: [PATCH] docs: fix phrasing in _read_pyproject_toml docstring Signed-off-by: aoright <102943475+aoright@users.noreply.github.com> --- src/fastapi_cli/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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():