Skip to content

Commit

Permalink
Deployment test 6.
Browse files Browse the repository at this point in the history
  • Loading branch information
anastasiabernat committed Jan 11, 2025
1 parent b66818a commit a63a3f2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dash_app/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@
tech_pathways_dict = recur_dictify(df=tech_pathways_df[pathway])
all_options = tech_pathways_dict ## sourced

print(os.path.join(METADATA_DIR, "msdlive_tech_paths.csv"))
print(os.path.join(METADATA_DIR, "layer_catalogue.csv"))
layer_catalogue = pd.read_csv(os.path.join(METADATA_DIR, "layer_catalogue.csv"))

layer_catalogue.rename(columns={'filename': 'label', 'filepath': 'value'}, inplace=True)
list_of_dicts = layer_catalogue[['label', 'value']].to_dict(orient='records')

Expand Down

0 comments on commit a63a3f2

Please sign in to comment.