# HG changeset patch # User Dennis Fink # Date 2015-10-14 00:59:05 # Node ID 3433df0a07ae79e397d56a3eeafa87fcc7db7b72 # Parent 8ae598558bf88a66262e91e03b7966c987a76571 PEP8 root/forms.py 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'),