Silenced flake 8 errors. Fixed #2202.

This commit is contained in:
Norman Jäckel 2016-06-16 10:59:35 +02:00
parent b45e0ea09f
commit 8e297e4a9a
2 changed files with 6 additions and 6 deletions

View File

@ -16,11 +16,11 @@ SECRET_KEY = 'secret'
# OpenSlides plugins
# Add plugins to this list.
INSTALLED_PLUGINS += (
INSTALLED_PLUGINS += ( # noqa
'tests.old.utils',
)
INSTALLED_APPS += INSTALLED_PLUGINS
INSTALLED_APPS += INSTALLED_PLUGINS # noqa
# Database
@ -40,7 +40,7 @@ TIME_ZONE = 'Europe/Berlin'
MEDIA_ROOT = os.path.join(OPENSLIDES_USER_DATA_PATH, '')
STATICFILES_DIRS.insert(0, os.path.join(OPENSLIDES_USER_DATA_PATH, 'static'))
STATICFILES_DIRS.insert(0, os.path.join(OPENSLIDES_USER_DATA_PATH, 'static')) # noqa
SEARCH_INDEX = 'ram'

View File

@ -16,11 +16,11 @@ SECRET_KEY = 'secret'
# OpenSlides plugins
# Add plugins to this list.
INSTALLED_PLUGINS += (
INSTALLED_PLUGINS += ( # noqa
'tests.integration.test_plugin',
)
INSTALLED_APPS += INSTALLED_PLUGINS
INSTALLED_APPS += INSTALLED_PLUGINS # noqa
# Database
@ -40,7 +40,7 @@ TIME_ZONE = 'Europe/Berlin'
MEDIA_ROOT = os.path.join(OPENSLIDES_USER_DATA_PATH, '')
STATICFILES_DIRS.insert(0, os.path.join(OPENSLIDES_USER_DATA_PATH, 'static'))
STATICFILES_DIRS.insert(0, os.path.join(OPENSLIDES_USER_DATA_PATH, 'static')) # noqa
SEARCH_INDEX = 'ram'