Spaces:
Runtime error
Runtime error
nafisneehal
commited on
Commit
•
6a56fb4
1
Parent(s):
73ac9f6
Update fetch_plot_data.py
Browse files- fetch_plot_data.py +2 -2
fetch_plot_data.py
CHANGED
@@ -21,8 +21,8 @@ HOPSWORKS_API_KEY = os.getenv("HOPSWORKS_API_KEY")
|
|
21 |
BASE_DIR = Path(__file__).resolve().parent.parent.parent
|
22 |
|
23 |
# Use BASE_DIR to dynamically load the config file
|
24 |
-
CONFIG_FILE = BASE_DIR / "src" / "config.yml"
|
25 |
-
with open(
|
26 |
configs = yaml.safe_load(file)
|
27 |
|
28 |
|
|
|
21 |
BASE_DIR = Path(__file__).resolve().parent.parent.parent
|
22 |
|
23 |
# Use BASE_DIR to dynamically load the config file
|
24 |
+
# CONFIG_FILE = BASE_DIR / "src" / "config.yml"
|
25 |
+
with open("config.yml", 'r') as file:
|
26 |
configs = yaml.safe_load(file)
|
27 |
|
28 |
|