mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-25 20:53:45 +00:00
6 lines
145 B
Python
6 lines
145 B
Python
|
|
from typing import NewType
|
||
|
|
|
||
|
|
from django.contrib.auth.base_user import AbstractBaseUser
|
||
|
|
|
||
|
|
AbstractUser = NewType("AbstractUser", AbstractBaseUser)
|