forked from CGM_Public/pretix_original
PEP8 compliancy
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -10,5 +10,5 @@ https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/
|
||||
import os
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pretix.settings")
|
||||
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
from django.core.wsgi import get_wsgi_application # NOQA
|
||||
application = get_wsgi_application()
|
||||
|
||||
Reference in New Issue
Block a user