fix: Add import for Optional type to enhance type hinting in settings

This commit is contained in:
salah 2026-02-26 23:42:31 +01:00
parent 0a66b9c0e3
commit a1a9d2f436
1 changed files with 1 additions and 0 deletions

View File

@ -1,5 +1,6 @@
from pydantic_settings import BaseSettings
from functools import lru_cache
from typing import Optional
class Settings(BaseSettings):