Fix user type

This commit is contained in:
Tom Hacohen 2020-12-29 14:04:17 +02:00
parent 259e395c92
commit ff55904f49

View File

@ -40,7 +40,7 @@ class User(AbstractUser):
return super().normalize_username(username).lower()
UserType = t.Type[User]
UserType = User
def get_typed_user_model() -> UserType: