diff options
| author | Glandos <bugs-github@antipoul.fr> | 2020-08-27 22:09:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-27 22:09:04 +0200 |
| commit | 58e5eca270f5954d56f1cf30609bb94cab212917 (patch) | |
| tree | db68c20e056fca744230b01d43ea127b154fa966 /ihatemoney/forms.py | |
| parent | d8d4e996315109a7b81b7e72cbf99bdb9912985b (diff) | |
| download | ihatemoney-mirror-58e5eca270f5954d56f1cf30609bb94cab212917.zip ihatemoney-mirror-58e5eca270f5954d56f1cf30609bb94cab212917.tar.gz ihatemoney-mirror-58e5eca270f5954d56f1cf30609bb94cab212917.tar.bz2 | |
update to black 20.8b1 (#676)
Some trailing commas were removed because of some black changes.
Diffstat (limited to 'ihatemoney/forms.py')
| -rw-r--r-- | ihatemoney/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ihatemoney/forms.py b/ihatemoney/forms.py index 295475e..e4a32d0 100644 --- a/ihatemoney/forms.py +++ b/ihatemoney/forms.py @@ -107,7 +107,7 @@ class EditProjectForm(FlaskForm): project_history = BooleanField(_("Enable project history")) ip_recording = BooleanField(_("Use IP tracking for project history")) currency_helper = CurrencyConverter() - default_currency = SelectField(_("Default Currency"), validators=[DataRequired()],) + default_currency = SelectField(_("Default Currency"), validators=[DataRequired()]) def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -228,7 +228,7 @@ class BillForm(FlaskForm): payer = SelectField(_("Payer"), validators=[DataRequired()], coerce=int) amount = CalculatorStringField(_("Amount paid"), validators=[DataRequired()]) currency_helper = CurrencyConverter() - original_currency = SelectField(_("Currency"), validators=[DataRequired()],) + original_currency = SelectField(_("Currency"), validators=[DataRequired()]) external_link = URLField( _("External link"), validators=[Optional()], |
