black format

This commit is contained in:
Adrien CLERC 2020-05-04 22:05:24 +02:00
parent d3e3cd418d
commit 1cfe3c1148

View file

@ -107,10 +107,7 @@ class EditProjectForm(FlaskForm):
project_history = BooleanField(_("Enable project history")) project_history = BooleanField(_("Enable project history"))
ip_recording = BooleanField(_("Use IP tracking for project history")) ip_recording = BooleanField(_("Use IP tracking for project history"))
currency_helper = CurrencyConverter() currency_helper = CurrencyConverter()
default_currency = SelectField( default_currency = SelectField(_("Default Currency"), validators=[DataRequired()],)
_("Default Currency"),
validators=[DataRequired()],
)
def __init__(self): def __init__(self):
super().__init__() super().__init__()