Skip to content

Commit 1f64bc0

Browse files
committed
Fix lint issues
Upgrading pyflakes meant the number of violations jumped above the failure threshold. Also added a few more warnings to the ignore list.
1 parent b6674d2 commit 1f64bc0

File tree

10 files changed

+51
-45
lines changed

10 files changed

+51
-45
lines changed

lint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
THRESHOLD=795
1010

1111
# Some warnings aren't worth worrying about...
12-
IGNORE="W292,E202"
12+
IGNORE="W292,E202,E128,E124"
1313

1414
# Run flake8 and convert the output into a format that the "violations" plugin
1515
# for Jenkins/Hudson can understand. Ignore warnings from migrations we we don't

oscar/apps/address/abstract_models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class AbstractShippingAddress(AbstractAddress):
173173
notes = models.TextField(
174174
blank=True, null=True,
175175
verbose_name=_('Courier instructions'),
176-
help_text=_("For example, leave the parcel in the wheelie bin " \
176+
help_text=_("For example, leave the parcel in the wheelie bin "
177177
"if I'm not in."))
178178

179179
class Meta:

oscar/apps/basket/abstract_models.py

+15-11
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class AbstractBasket(models.Model):
2525
# - Frozen is for when a basket is in the process of being submitted
2626
# and we need to prevent any changes to it.
2727
OPEN, MERGED, SAVED, FROZEN, SUBMITTED = (
28-
"Open", "Merged", "Saved", "Frozen", "Submitted")
28+
"Open", "Merged", "Saved", "Frozen", "Submitted")
2929
STATUS_CHOICES = (
3030
(OPEN, _("Open - currently active")),
3131
(MERGED, _("Merged - superceded by another basket")),
@@ -677,17 +677,21 @@ def get_warning(self):
677677

678678
current_price_incl_tax = self.product.stockrecord.price_incl_tax
679679
if current_price_incl_tax > self.price_incl_tax:
680-
return _(
681-
u"The price of '%(product)s' has increased from %(old_price)s to %(new_price)s since you added it to your basket") % {
682-
'product': self.product.get_title(),
683-
'old_price': currency(self.price_incl_tax),
684-
'new_price': currency(current_price_incl_tax)}
680+
msg = ("The price of '%(product)s' has increased from "
681+
"%(old_price)s to %(new_price)s since you added it "
682+
"to your basket")
683+
return _(msg) % {
684+
'product': self.product.get_title(),
685+
'old_price': currency(self.price_incl_tax),
686+
'new_price': currency(current_price_incl_tax)}
685687
if current_price_incl_tax < self.price_incl_tax:
686-
return _(
687-
u"The price of '%(product)s' has decreased from %(old_price)s to %(new_price)s since you added it to your basket") % {
688-
'product': self.product.get_title(),
689-
'old_price': currency(self.price_incl_tax),
690-
'new_price': currency(current_price_incl_tax)}
688+
msg = ("The price of '%(product)s' has decreased from "
689+
"%(old_price)s to %(new_price)s since you added it "
690+
"to your basket")
691+
return _(msg) % {
692+
'product': self.product.get_title(),
693+
'old_price': currency(self.price_incl_tax),
694+
'new_price': currency(current_price_incl_tax)}
691695

692696

693697
class AbstractLineAttribute(models.Model):

oscar/apps/basket/forms.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ def _construct_form(self, i, **kwargs):
8383

8484

8585
SavedLineFormSet = modelformset_factory(Line, form=SavedLineForm,
86-
formset=BaseSavedLineFormSet, extra=0,
87-
can_delete=True)
86+
formset=BaseSavedLineFormSet, extra=0,
87+
can_delete=True)
8888

8989

9090
class BasketVoucherForm(forms.Form):
@@ -169,9 +169,9 @@ def clean_quantity(self):
169169
_("Due to technical limitations we are not able to ship"
170170
" more than %(threshold)d items in one order. Your"
171171
" basket currently has %(basket)d items.") % {
172-
'threshold': basket_threshold,
173-
'basket': total_basket_quantity,
174-
})
172+
'threshold': basket_threshold,
173+
'basket': total_basket_quantity,
174+
})
175175
return qty
176176

177177
def _create_group_product_fields(self, item):
@@ -189,8 +189,8 @@ def _create_group_product_fields(self, item):
189189
variant.get_title(), attr_summary,
190190
currency(variant.stockrecord.price_incl_tax))
191191
choices.append((variant.id, summary))
192-
self.fields['product_id'] = forms.ChoiceField(choices=tuple(choices),
193-
label=_("Variant"))
192+
self.fields['product_id'] = forms.ChoiceField(
193+
choices=tuple(choices), label=_("Variant"))
194194

195195
def _create_product_fields(self, item):
196196
"""

oscar/apps/basket/middleware.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ def process_response(self, request, response):
6565

6666
# If a basket has had products added to it, but the user is anonymous
6767
# then we need to assign it to a cookie
68-
if hasattr(request, 'basket') and request.basket.id > 0 \
69-
and not request.user.is_authenticated() \
70-
and settings.OSCAR_BASKET_COOKIE_OPEN not in request.COOKIES:
68+
if (hasattr(request, 'basket') and request.basket.id > 0
69+
and not request.user.is_authenticated()
70+
and settings.OSCAR_BASKET_COOKIE_OPEN not in request.COOKIES):
7171
cookie = "%s_%s" % (
7272
request.basket.id, self.get_basket_hash(request.basket.id))
7373
response.set_cookie(settings.OSCAR_BASKET_COOKIE_OPEN,

oscar/apps/basket/views.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
from oscar.templatetags.currency_filters import currency
1818
from oscar.core.loading import get_class, get_classes
1919
Applicator = get_class('offer.utils', 'Applicator')
20-
BasketLineForm, AddToBasketForm, BasketVoucherForm, \
21-
SavedLineFormSet, SavedLineForm, ProductSelectionForm = get_classes(
22-
'basket.forms', ('BasketLineForm', 'AddToBasketForm',
23-
'BasketVoucherForm', 'SavedLineFormSet',
24-
'SavedLineForm', 'ProductSelectionForm'))
20+
(BasketLineForm, AddToBasketForm, BasketVoucherForm,
21+
SavedLineFormSet, SavedLineForm, ProductSelectionForm) = get_classes(
22+
'basket.forms', ('BasketLineForm', 'AddToBasketForm',
23+
'BasketVoucherForm', 'SavedLineFormSet',
24+
'SavedLineForm', 'ProductSelectionForm'))
2525
Repository = get_class('shipping.repository', ('Repository'))
2626

2727

@@ -162,12 +162,12 @@ def formset_valid(self, formset):
162162

163163
for form in formset:
164164
if (hasattr(form, 'cleaned_data') and
165-
form.cleaned_data['save_for_later']):
165+
form.cleaned_data['save_for_later']):
166166
line = form.instance
167167
if self.request.user.is_authenticated():
168168
self.move_line_to_saved_basket(line)
169169
msg = _(u"'%(title)s' has been saved for later") % {
170-
'title': line.product}
170+
'title': line.product}
171171
flash_messages.info(msg)
172172
save_for_later = True
173173
else:

oscar/apps/catalogue/abstract_models.py

+11-11
Original file line numberDiff line numberDiff line change
@@ -570,16 +570,16 @@ def validate_attributes(self):
570570
value = getattr(self, attribute.code, None)
571571
if value is None:
572572
if attribute.required:
573-
raise ValidationError(_("%(attr)s attribute cannot " \
574-
"be blank") % \
575-
{'attr': attribute.code})
573+
raise ValidationError(
574+
_("%(attr)s attribute cannot be blanke") %
575+
{'attr': attribute.code})
576576
else:
577577
try:
578578
attribute.validate_value(value)
579579
except ValidationError, e:
580-
raise ValidationError(_("%(attr)s attribute %(err)s") % \
581-
{'attr': attribute.code,
582-
'err': e})
580+
raise ValidationError(
581+
_("%(attr)s attribute %(err)s") %
582+
{'attr': attribute.code, 'err': e})
583583

584584
def get_values(self):
585585
return self.product.attribute_values.all()
@@ -688,9 +688,9 @@ def _validate_option(self, value):
688688
valid_values = self.option_group.options.values_list('option',
689689
flat=True)
690690
if value.option not in valid_values:
691-
raise ValidationError(_("%(enum)s is not a valid choice "
692-
"for %(attr)s") % \
693-
{'enum': value, 'attr': self})
691+
raise ValidationError(
692+
_("%(enum)s is not a valid choice for %(attr)s") %
693+
{'enum': value, 'attr': self})
694694

695695
def get_validator(self):
696696
DATATYPE_VALIDATORS = {
@@ -716,11 +716,11 @@ def save_value(self, product, value):
716716
try:
717717
value_obj = product.attribute_values.get(attribute=self)
718718
except get_model('catalogue', 'ProductAttributeValue').DoesNotExist:
719-
if value == None or value == '':
719+
if value is None or value == '':
720720
return
721721
model = get_model('catalogue', 'ProductAttributeValue')
722722
value_obj = model.objects.create(product=product, attribute=self)
723-
if value == None or value == '':
723+
if value is None or value == '':
724724
value_obj.delete()
725725
return
726726
if value != value_obj.value:

oscar/apps/catalogue/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
class Importer(object):
2323

24-
allowed_extensions = ['.jpeg','.jpg','.gif','.png']
24+
allowed_extensions = ['.jpeg', '.jpg', '.gif', '.png']
2525

2626
def __init__(self, logger, field):
2727
self.logger = logger

oscar/apps/dashboard/orders/views.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,10 @@ def get_stats(self, filters):
5959
stats = {
6060
'total_orders': orders.count(),
6161
'total_lines': Line.objects.filter(order__in=orders).count(),
62-
'total_revenue': orders.aggregate(Sum('total_incl_tax'))['total_incl_tax__sum'] or D('0.00'),
63-
'order_status_breakdown': orders.order_by('status').values('status').annotate(freq=Count('id'))
62+
'total_revenue': orders.aggregate(
63+
Sum('total_incl_tax'))['total_incl_tax__sum'] or D('0.00'),
64+
'order_status_breakdown': orders.order_by('status').values(
65+
'status').annotate(freq=Count('id'))
6466
}
6567
return stats
6668

oscar/defaults.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
'label': _('Low stock alerts'),
9797
'url_name': 'dashboard:stock-alert-list',
9898
},
99-
]
99+
]
100100
},
101101
{
102102
'label': _('Fulfilment'),

0 commit comments

Comments
 (0)