diff options
Diffstat (limited to 'src/frest/auth/forms.py')
-rw-r--r-- | src/frest/auth/forms.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/frest/auth/forms.py b/src/frest/auth/forms.py deleted file mode 100644 index abc2f49..0000000 --- a/src/frest/auth/forms.py +++ /dev/null @@ -1,10 +0,0 @@ -from .models import User -from forms import ModelForm - - -class UserForm(ModelForm): - model = User - - def __init__(self, data): - super().__init__(self.model) - self.data = data |