mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-09 00:00:58 +00:00
5 lines
145 B
Python
5 lines
145 B
Python
from typing import NewType
|
|
|
|
from django.contrib.auth.base_user import AbstractBaseUser
|
|
|
|
AbstractUser = NewType("AbstractUser", AbstractBaseUser)
|