elfsong commited on
Commit
0ab972e
β€’
1 Parent(s): 7438000
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,7 +8,7 @@ def auth():
8
  token_f.write("Hello")
9
 
10
  with open("/tmp/token.json", "r") as token_f:
11
- print(token_f.read())
12
 
13
  return credentials
14
 
@@ -29,7 +29,7 @@ def activate_server():
29
  st.title("Lucky Reactor")
30
 
31
  credentials = auth()
32
-
33
 
34
  st.image("cover.jpg", caption="Reactor is currently " + "running πŸš€" if status else "sleeping 😴" + ".")
35
 
 
8
  token_f.write("Hello")
9
 
10
  with open("/tmp/token.json", "r") as token_f:
11
+ st.write(token_f.read())
12
 
13
  return credentials
14
 
 
29
  st.title("Lucky Reactor")
30
 
31
  credentials = auth()
32
+ status = True
33
 
34
  st.image("cover.jpg", caption="Reactor is currently " + "running πŸš€" if status else "sleeping 😴" + ".")
35