Added # type: ignore[name-defined] on UserAdminCreationForm

This commit is contained in:
fravetier 2025-03-24 16:08:52 +01:00
parent a9e1c96d19
commit 6db4acbec5

View File

@ -17,7 +17,7 @@ class UserAdminChangeForm(admin_forms.UserChangeForm):
{%- endif %} {%- endif %}
class UserAdminCreationForm(admin_forms.AdminUserCreationForm): class UserAdminCreationForm(admin_forms.AdminUserCreationForm): # type: ignore[name-defined]
""" """
Form for User Creation in the Admin Area. Form for User Creation in the Admin Area.
To change user signup, see UserSignupForm and UserSocialSignupForm. To change user signup, see UserSignupForm and UserSocialSignupForm.