Spaces:
Running
Running
Update app2.py
Browse files
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'])
|