PEP8 compliancy

This commit is contained in:
Raphael Michel
2015-02-08 18:45:13 +01:00
parent 2c3a9713a1
commit 5b16eeb8f4
5 changed files with 31 additions and 26 deletions

View File

@@ -105,7 +105,7 @@ LOCALE_PATHS = (
'locale',
)
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import ugettext_lazy as _ # NOQA
LANGUAGES = (
('de', _('German')),
('en', _('English')),
@@ -154,6 +154,6 @@ DEFAULT_CURRENCY = 'EUR'
INTERNAL_IPS = ('127.0.0.1', '::1')
try:
from local_settings import *
from local_settings import * # NOQA
except ImportError:
pass