chansung commited on
Commit
1d804c6
1 Parent(s): 9f7b0cb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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 = []