mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-20 13:30:58 +03:00
Ignore typing override in name removals
This commit is contained in:
parent
2f416f9057
commit
5809eabb31
|
@ -9,8 +9,8 @@ class User(AbstractUser):
|
||||||
|
|
||||||
#: First and last name do not cover name patterns around the globe
|
#: First and last name do not cover name patterns around the globe
|
||||||
name = CharField(_("Name of User"), blank=True, max_length=255)
|
name = CharField(_("Name of User"), blank=True, max_length=255)
|
||||||
first_name = None
|
first_name = None # type: ignore
|
||||||
last_name = None
|
last_name = None # type: ignore
|
||||||
|
|
||||||
def get_absolute_url(self):
|
def get_absolute_url(self):
|
||||||
"""Get url for user's detail view.
|
"""Get url for user's detail view.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user