PEP fixes

This commit is contained in:
Oliver Walters 2020-09-01 20:24:14 +10:00
parent 74f25ee7f9
commit 4613730a19

View File

@ -376,7 +376,7 @@ class Part(MPTTModel):
if type(latest) is int:
if quantity >= 2:
text = '{n} - {m}'.format(n=latest+1, m=latest+1+quantity)
text = '{n} - {m}'.format(n=latest + 1, m=latest + 1 + quantity)
return _('Next available serial numbers are') + ' ' + text
else: