diff --git a/tests/test_to_django.py b/tests/test_to_django.py index b6a73df..2796c5e 100644 --- a/tests/test_to_django.py +++ b/tests/test_to_django.py @@ -135,7 +135,7 @@ class StorageSettings(BaseSettings): FILE_STORAGE: str @computed_field - def STORAGES(self) -> dict[str, dict[str, str]]: + def STORAGES(self) -> Dict[str, Dict[str, str]]: return {"default": {"BACKEND": self.FILE_STORAGE}} settings = StorageSettings(FILE_STORAGE="ExampleStorage")