Making it so that lanforge-scripts can work if the repository isn't named exactly the same way

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-09-17 15:29:15 -07:00
parent b8fa4377a7
commit 36400e003d
125 changed files with 572 additions and 578 deletions

View File

@@ -27,12 +27,12 @@ import pandas as pd
import pdfkit
import random
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__ + "../../../")))
lf_report = importlib.import_module("lanforge-scripts.py-scripts.lf_report")
lf_report = importlib.import_module("py-scripts.lf_report")
lf_report = lf_report.lf_report
lf_graph = importlib.import_module("lanforge-scripts.py-scripts.lf_graph")
lf_graph = importlib.import_module("py-scripts.lf_graph")
lf_bar_graph = lf_graph.lf_bar_graph
lf_scatter_graph = lf_graph.lf_scatter_graph
lf_stacked_graph = lf_graph.lf_stacked_graph