Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,6 +4,10 @@ from styles import MODEL_SELECTION_CSS
|
|
| 4 |
from js import GET_LOCAL_STORAGE, UPDATE_LEFT_BTNS_STATE, UPDATE_PLACEHOLDERS
|
| 5 |
from templates import templates
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
chl_file = open("channels.txt", "r")
|
| 8 |
channels = chl_file.read().split("\n")
|
| 9 |
channel_btns = []
|
|
|
|
| 4 |
from js import GET_LOCAL_STORAGE, UPDATE_LEFT_BTNS_STATE, UPDATE_PLACEHOLDERS
|
| 5 |
from templates import templates
|
| 6 |
|
| 7 |
+
ex_file = open("examples.txt", "r")
|
| 8 |
+
examples = ex_file.read().split("\n")
|
| 9 |
+
ex_btns = []
|
| 10 |
+
|
| 11 |
chl_file = open("channels.txt", "r")
|
| 12 |
channels = chl_file.read().split("\n")
|
| 13 |
channel_btns = []
|