From 41e29ac19964837f0ca773d55a1e71b9e0df9510 Mon Sep 17 00:00:00 2001 From: Pouzor Date: Mon, 9 Mar 2026 00:15:42 +0100 Subject: [PATCH] fix: suppress mypy false positive on pydantic-settings required field --- backend/app/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/core/config.py b/backend/app/core/config.py index 1c8f4b3..34af9a2 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -14,4 +14,4 @@ class Settings(BaseSettings): access_token_expire_minutes: int = 1440 # 24h -settings = Settings() +settings = Settings() # type: ignore[call-arg] # pydantic-settings loads secret_key from env