Fix import of `Annotated` in `settings.app03`

This commit is contained in:
Yurii Motov 2025-11-27 15:15:06 +01:00
parent a884f81157
commit abf88ccf35
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
from functools import lru_cache
from typing import Annotated
from fastapi import Depends, FastAPI
from typing_extensions import Annotated
from . import config

View File

@ -1,7 +1,7 @@
from functools import lru_cache
from typing import Annotated
from fastapi import Depends, FastAPI
from typing_extensions import Annotated
from . import config