X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/5f176bb52a7a59bf88f5728e60a3a62e12fb3d54..82c3054bcdeb000aa9782da80d644070797b5cbe:/apps/funding/widgets.py diff --git a/apps/funding/widgets.py b/apps/funding/widgets.py index cd7bf9b0d..8dc9742ce 100644 --- a/apps/funding/widgets.py +++ b/apps/funding/widgets.py @@ -3,7 +3,6 @@ # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # from decimal import Decimal -from django.conf import settings from django import forms from django.template.loader import render_to_string @@ -37,5 +36,3 @@ class PerksAmountWidget(forms.Textarea): def value_from_datadict(self, data, files, name): num_str = data.get(self.perks_input_name(name)) or data[name] return num_str.replace(',', '.') - -