Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Sep 6, 2023
1 parent e13671d commit 640bbbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/apps/identity/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import TYPE_CHECKING, Final, final
from typing import TYPE_CHECKING, Any, Final, final

from django.contrib.auth.models import (
AbstractBaseUser,
Expand All @@ -19,7 +19,7 @@ def create_user(
self,
email: str,
password: str,
**extra_fields,
**extra_fields: Any,
) -> 'User':
"""Create user: regular registration process."""
if not email:
Expand All @@ -36,7 +36,7 @@ def create_superuser(
self,
email: str,
password: str,
**extra_fields,
**extra_fields: Any,
) -> 'User':
"""Create super user."""
user = self.create_user(email, password, **extra_fields)
Expand Down

0 comments on commit 640bbbb

Please sign in to comment.