Revert "importlib refactor ../ typo"

This reverts commit 34afad944f.
This commit is contained in:
erinnerim
2021-09-10 17:57:48 -07:00
parent db4d3f9fe3
commit 03a4f95153
2 changed files with 2 additions and 2 deletions

View File

@@ -106,7 +106,7 @@ if sys.version_info[0] != 3:
exit(1)
if 'lanforge-scripts' not in sys.path:
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../../")))
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
cv_test_manager = importlib.import_module("lanforge-scripts.py-json.cv_test_manager")
cv_test = cv_test_manager.cv_test

View File

@@ -62,7 +62,7 @@ if sys.version_info[0] != 3:
exit(1)
if 'lanforge-scripts' not in sys.path:
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../../")))
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
from InfluxRequest import *
InfluxRequest = importlib.import_module("lanforge-scripts.py-dashboard.InfluxRequest")