JVice commited on
Commit
23dd48c
·
1 Parent(s): 2fe7ca1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
app.py CHANGED
@@ -85,15 +85,15 @@ def user_login_create():
85
  users = None
86
  snapshot_download(repo_id='JVice/try-before-you-bias-data',repo_type='dataset',local_dir='user_data')
87
  newPath = 'user_data/data/user_database.yaml'
88
- with open(newPath) as file:
89
- users = yaml.load(file, Loader=SafeLoader)
90
- AUTHENTICATOR = stauth.Authenticate(
91
- users['credentials'],
92
- users['cookie']['name'],
93
- users['cookie']['key'],
94
- users['cookie']['expiry_days'],
95
- users['preauthorized']
96
- )
97
 
98
  with st.sidebar:
99
  st.image(TBYB_LOGO, width=70)
 
85
  users = None
86
  snapshot_download(repo_id='JVice/try-before-you-bias-data',repo_type='dataset',local_dir='user_data')
87
  newPath = 'user_data/data/user_database.yaml'
88
+ with open(newPath) as file:
89
+ users = yaml.load(file, Loader=SafeLoader)
90
+ AUTHENTICATOR = stauth.Authenticate(
91
+ users['credentials'],
92
+ users['cookie']['name'],
93
+ users['cookie']['key'],
94
+ users['cookie']['expiry_days'],
95
+ users['preauthorized']
96
+ )
97
 
98
  with st.sidebar:
99
  st.image(TBYB_LOGO, width=70)