Spaces:
Paused
Paused
Fix paths
Browse files
opendashboards/assets/io.py
CHANGED
@@ -51,7 +51,7 @@ def load_data(selected_runs, load=True, save=False):
|
|
51 |
progress = st.progress(0, 'Loading data')
|
52 |
info = st.empty()
|
53 |
if not os.path.exists('data/'):
|
54 |
-
os.makedirs(
|
55 |
for i, idx in enumerate(selected_runs.index):
|
56 |
run = selected_runs.loc[idx]
|
57 |
prog_msg = f'Loading data {i/len(selected_runs)*100:.0f}% ({successful}/{len(selected_runs)} runs, {n_events} events)'
|
|
|
51 |
progress = st.progress(0, 'Loading data')
|
52 |
info = st.empty()
|
53 |
if not os.path.exists('data/'):
|
54 |
+
os.makedirs('data/')
|
55 |
for i, idx in enumerate(selected_runs.index):
|
56 |
run = selected_runs.loc[idx]
|
57 |
prog_msg = f'Loading data {i/len(selected_runs)*100:.0f}% ({successful}/{len(selected_runs)} runs, {n_events} events)'
|