Update config.py
Browse files
config.py
CHANGED
|
@@ -25,7 +25,7 @@ class AppConfig:
|
|
| 25 |
def detect_loaded_datasets():
|
| 26 |
print('Calling detect_loaded_datasets')
|
| 27 |
"""Check which datasets are already stored locally."""
|
| 28 |
-
local_path = ConfigConstants.DATA_SET_PATH
|
| 29 |
if not os.path.exists(local_path):
|
| 30 |
return set()
|
| 31 |
|
|
|
|
| 25 |
def detect_loaded_datasets():
|
| 26 |
print('Calling detect_loaded_datasets')
|
| 27 |
"""Check which datasets are already stored locally."""
|
| 28 |
+
local_path = ConfigConstants.DATA_SET_PATH + 'local_datasets'
|
| 29 |
if not os.path.exists(local_path):
|
| 30 |
return set()
|
| 31 |
|