Fixing error introduced by formatter

This commit is contained in:
msingh
2019-06-12 10:55:32 -04:00
parent 7e26fa3823
commit 215dde1eca

View File

@@ -23,8 +23,6 @@ from path import Path as path
from openedx.core.release import RELEASE_LINE
from .production import * # pylint: disable=wildcard-import, unused-wildcard-import, wrong-import-position
CONFIG_ROOT = path(__file__).abspath().dirname()
TEST_ROOT = CONFIG_ROOT.dirname().dirname() / "test_root"
@@ -39,6 +37,9 @@ os.environ['CONFIG_ROOT'] = CONFIG_ROOT
os.environ['LMS_CFG'] = str.format("{config_root}/{service_variant}.yml",
config_root=os.environ['CONFIG_ROOT'], service_variant=os.environ['SERVICE_VARIANT'])
from .production import * # pylint: disable=wildcard-import, unused-wildcard-import, wrong-import-position
######################### Testing overrides ####################################
# Redirect to the test_root folder within the repo