Silenced flake 8 errors. Fixed #2202.
This commit is contained in:
parent
b45e0ea09f
commit
8e297e4a9a
@ -16,11 +16,11 @@ SECRET_KEY = 'secret'
|
|||||||
# OpenSlides plugins
|
# OpenSlides plugins
|
||||||
# Add plugins to this list.
|
# Add plugins to this list.
|
||||||
|
|
||||||
INSTALLED_PLUGINS += (
|
INSTALLED_PLUGINS += ( # noqa
|
||||||
'tests.old.utils',
|
'tests.old.utils',
|
||||||
)
|
)
|
||||||
|
|
||||||
INSTALLED_APPS += INSTALLED_PLUGINS
|
INSTALLED_APPS += INSTALLED_PLUGINS # noqa
|
||||||
|
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
@ -40,7 +40,7 @@ TIME_ZONE = 'Europe/Berlin'
|
|||||||
|
|
||||||
MEDIA_ROOT = os.path.join(OPENSLIDES_USER_DATA_PATH, '')
|
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'
|
SEARCH_INDEX = 'ram'
|
||||||
|
|
||||||
|
@ -16,11 +16,11 @@ SECRET_KEY = 'secret'
|
|||||||
# OpenSlides plugins
|
# OpenSlides plugins
|
||||||
# Add plugins to this list.
|
# Add plugins to this list.
|
||||||
|
|
||||||
INSTALLED_PLUGINS += (
|
INSTALLED_PLUGINS += ( # noqa
|
||||||
'tests.integration.test_plugin',
|
'tests.integration.test_plugin',
|
||||||
)
|
)
|
||||||
|
|
||||||
INSTALLED_APPS += INSTALLED_PLUGINS
|
INSTALLED_APPS += INSTALLED_PLUGINS # noqa
|
||||||
|
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
@ -40,7 +40,7 @@ TIME_ZONE = 'Europe/Berlin'
|
|||||||
|
|
||||||
MEDIA_ROOT = os.path.join(OPENSLIDES_USER_DATA_PATH, '')
|
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'
|
SEARCH_INDEX = 'ram'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user