django-notifications/notifications/notification_types.py
2024-04-28 18:42:14 -03:00

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]]