EasySci commited on
Commit
98fe342
·
1 Parent(s): 5528737

Update app2.py

Browse files
Files changed (1) hide show
  1. app2.py +2 -2
app2.py CHANGED
@@ -67,8 +67,8 @@ button3.param.watch(toggle_settings, 'value')
67
  # List to store the entered options
68
  loaded_dict = TLDR.load_categories()
69
 
70
- arxiv_tags = loaded_dict.keys()
71
- entered_options = loaded_dict.values()
72
 
73
  # Create buttons for the header
74
  header_buttons = pn.Row(sizing_mode='stretch_width', css_classes=['header-buttons'])
 
67
  # List to store the entered options
68
  loaded_dict = TLDR.load_categories()
69
 
70
+ arxiv_tags = list(loaded_dict.keys())
71
+ entered_options = list(loaded_dict.values())
72
 
73
  # Create buttons for the header
74
  header_buttons = pn.Row(sizing_mode='stretch_width', css_classes=['header-buttons'])