mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-16 21:30:24 +00:00
5 lines
176 B
Python
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]
|