django-notifications/notifications/types.py
2024-04-13 19:59:01 -03:00

5 lines
176 B
Python

from typing import NewType
from django.contrib.auth.base_user import AbstractBaseUser
AbstractUser = NewType("AbstractUser", AbstractBaseUser) # type: ignore[valid-newtype]