diff --git a/ennstatus/root/forms.py b/ennstatus/root/forms.py
--- a/ennstatus/root/forms.py
+++ b/ennstatus/root/forms.py
@@ -59,16 +59,22 @@ class MembershipForm(Form):
membership = RadioField('Membership Plan*',
validators=[
- InputRequired('Please select one of the options!')
+ InputRequired(
+ 'Please select one of the options!'
+ )
],
choices=[
('regular', 'Regular membership (120€/year)'),
('student', 'Student membership (60€/year)'),
- ('starving', 'Starving Hacker - Get in touch with us at info@enn.lu'),
+ ('starving',
+ 'Starving Hacker - Get in touch with us at info@enn.lu'
+ ),
]
)
- c3l = BooleanField('Include "Chaos Computer Club Lëtzebuerg" Membership1')
+ c3l = BooleanField(
+ 'Include "Chaos Computer Club Lëtzebuerg" Membership1'
+ )
submit = SubmitField('Become a member')
@@ -94,7 +100,9 @@ class BridgeprogramForm(Form):
duration = RadioField('Duration',
validators=[
- InputRequired('Please select one of the options!')
+ InputRequired(
+ 'Please select one of the options!'
+ )
],
choices=[
('1', '1 year'),