diff --git a/solution/health_and_education/clusters/electricity_cluster.py b/solution/health_and_education/clusters/electricity_cluster.py index c284eef22..cbd174bfe 100644 --- a/solution/health_and_education/clusters/electricity_cluster.py +++ b/solution/health_and_education/clusters/electricity_cluster.py @@ -7,10 +7,12 @@ import numpy as np import pandas as pd -# import sys -# sys.path.append('c:\\Users\\sunishchal.dev\\Documents\\solutions') +import sys +repo_path = str(pathlib.Path(__file__).parents[3]) +sys.path.append(repo_path) -# import solarpvutil +from solution import solarpvutil +from model import dd DATADIR = pathlib.Path(__file__).parents[1].joinpath('data') THISDIR = pathlib.Path(__file__).parents[0]