Skip to content

Commit

Permalink
Update type of get_session_auth_fallback_hash to the correct type (#2407
Browse files Browse the repository at this point in the history
)

Signed-off-by: saJaeHyukc <[email protected]>
  • Loading branch information
JaeHyuckSa authored Oct 15, 2024
1 parent 1d3b071 commit 715df65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django-stubs/contrib/auth/base_user.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, ClassVar, Literal, TypeVar, overload
from typing import Any, ClassVar, Iterable, Literal, TypeVar, overload

from django.db import models
from django.db.models.base import Model
Expand Down Expand Up @@ -33,7 +33,7 @@ class AbstractBaseUser(models.Model):
def set_unusable_password(self) -> None: ...
def has_usable_password(self) -> bool: ...
def get_session_auth_hash(self) -> str: ...
def get_session_auth_fallback_hash(self) -> str: ...
def get_session_auth_fallback_hash(self) -> Iterable[str]: ...
@classmethod
def get_email_field_name(cls) -> str: ...
@classmethod
Expand Down

0 comments on commit 715df65

Please sign in to comment.