Fix PEP8: E128 continuation line under-indented
for visual indent
This commit is contained in:
@@ -9,12 +9,38 @@ from path import path
|
||||
import sys
|
||||
import mock
|
||||
|
||||
MOCK_MODULES = ['lxml', 'requests', 'xblock', 'fields', 'xblock.fields',
|
||||
'frament', 'xblock.fragment', 'webob', 'multidict', 'webob.multidict', 'core',
|
||||
'xblock.core', 'runtime', 'xblock.runtime', 'sortedcontainers', 'contracts',
|
||||
'plugin', 'xblock.plugin', 'opaque_keys.edx.asides', 'asides',
|
||||
'dogstats_wrapper', 'fs', 'fs.errors', 'edxmako', 'edxmako.shortcuts',
|
||||
'shortcuts', 'crum', 'opaque_keys.edx.locator', 'LibraryLocator', 'Location']
|
||||
MOCK_MODULES = [
|
||||
'lxml',
|
||||
'requests',
|
||||
'xblock',
|
||||
'fields',
|
||||
'xblock.fields',
|
||||
'frament',
|
||||
'xblock.fragment',
|
||||
'webob',
|
||||
'multidict',
|
||||
'webob.multidict',
|
||||
'core',
|
||||
'xblock.core',
|
||||
'runtime',
|
||||
'xblock.runtime',
|
||||
'sortedcontainers',
|
||||
'contracts',
|
||||
'plugin',
|
||||
'xblock.plugin',
|
||||
'opaque_keys.edx.asides',
|
||||
'asides',
|
||||
'dogstats_wrapper',
|
||||
'fs',
|
||||
'fs.errors',
|
||||
'edxmako',
|
||||
'edxmako.shortcuts',
|
||||
'shortcuts',
|
||||
'crum',
|
||||
'opaque_keys.edx.locator',
|
||||
'LibraryLocator',
|
||||
'Location',
|
||||
]
|
||||
|
||||
for mod_name in MOCK_MODULES:
|
||||
sys.modules[mod_name] = mock.Mock()
|
||||
|
||||
Reference in New Issue
Block a user