summaryrefslogtreecommitdiffstats
path: root/accounts/views/login/forms.py
diff options
context:
space:
mode:
authorJonah BrĂ¼chert <jbb@kaidan.im>2024-03-29 02:20:41 +0100
committerJonah BrĂ¼chert <jbb@kaidan.im>2024-03-29 02:23:00 +0100
commit39230732099298b7f56c60b396949d8c0484e4dc (patch)
treed2fc00ccd36783183927fcb90b748641ed588e1d /accounts/views/login/forms.py
parentdcad1d5ca832ea05ababa3d38de9a82fc361f2ba (diff)
downloadweb-39230732099298b7f56c60b396949d8c0484e4dc.tar.gz
web-39230732099298b7f56c60b396949d8c0484e4dc.tar.bz2
web-39230732099298b7f56c60b396949d8c0484e4dc.zip
Format project
To allow automatically formatting changes in the future. Command used: black -l 79 accounts/
Diffstat (limited to 'accounts/views/login/forms.py')
-rw-r--r--accounts/views/login/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/accounts/views/login/forms.py b/accounts/views/login/forms.py
index e4155b4..b9774a3 100644
--- a/accounts/views/login/forms.py
+++ b/accounts/views/login/forms.py
@@ -4,5 +4,5 @@ from wtforms import StringField, PasswordField, validators
class LoginForm(Form):
- username = StringField('Benutzername')
- password = PasswordField('Passwort', [validators.DataRequired()])
+ username = StringField("Benutzername")
+ password = PasswordField("Passwort", [validators.DataRequired()])