mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
* add import_all.test builder * fix errors * fix typechecking errors * fix migrations typechecking
8 lines
249 B
Python
8 lines
249 B
Python
from django.contrib.auth.forms import AuthenticationForm, PasswordChangeForm
|
|
|
|
class AdminAuthenticationForm(AuthenticationForm):
|
|
required_css_class: str = ...
|
|
|
|
class AdminPasswordChangeForm(PasswordChangeForm):
|
|
required_css_class: str = ...
|