From e903c1858f34b289d9a740885ee524568e087e2f Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Tue, 3 Sep 2019 22:45:45 +1000 Subject: [PATCH] PEP --- InvenTree/part/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/part/forms.py b/InvenTree/part/forms.py index c731985ce4..88ff2f2599 100644 --- a/InvenTree/part/forms.py +++ b/InvenTree/part/forms.py @@ -169,7 +169,7 @@ class PartPriceForm(forms.Form): currency = forms.ChoiceField(label='Currency', help_text=_('Select currency for price calculation')) def get_currency_choices(self): - """ Create options for Currency """ + """ Create options for Currency """ currencies = Currency.objects.all() choices = [(None, '---------')]