mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-17 17:21:06 +00:00
7 lines
245 B
Python
7 lines
245 B
Python
from typing import NewType, Type, Union
|
|
|
|
from django.contrib.auth.base_user import AbstractBaseUser
|
|
|
|
AbstractUser = NewType("AbstractUser", AbstractBaseUser) # type: ignore[valid-newtype]
|
|
|
|
OptionalAbstractUser = Union[None, Type[AbstractUser]]
|