Skip to content

Commit d93fd29

Browse files
ImTotemclaude
andcommitted
fix(config): suppress pyright call-arg for Settings() instantiation
pydantic-settings populates required fields from .env at runtime, but pyright cannot infer this statically. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 54fee2d commit d93fd29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bcsd_api/dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
@lru_cache
1616
def get_settings() -> Settings:
17-
return Settings()
17+
return Settings() # type: ignore[call-arg]
1818

1919

2020
@lru_cache

0 commit comments

Comments
 (0)