elfsong commited on
Commit
39f2ddf
β€’
1 Parent(s): e29fb35
Files changed (1) hide show
  1. app.py +2 -1
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
- st.write("lalala:", token_f.read())
12
 
13
  return credentials
14
 
@@ -30,6 +30,7 @@ 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
 
 
8
  token_f.write("Hello")
9
 
10
  with open("/tmp/token.json", "r") as token_f:
11
+ credentials = token_f.read()
12
 
13
  return credentials
14
 
 
30
 
31
  credentials = auth()
32
  status = True
33
+ st.markdown("credentials: ", credentials)
34
 
35
  st.image("cover.jpg", caption="Reactor is currently " + "running πŸš€" if status else "sleeping 😴" + ".")
36