django-notifications/notifications/types.py
2023-07-07 00:54:47 +00:00

5 lines
145 B
Python

from typing import NewType
from django.contrib.auth.base_user import AbstractBaseUser
AbstractUser = NewType("AbstractUser", AbstractBaseUser)