awacke1 commited on
Commit
03e5d97
·
1 Parent(s): 152ab2b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -27,8 +27,8 @@ data_df = build_dataframe()
27
 
28
  query_params = st.experimental_get_query_params()
29
  # There is only one value for each parameter, retrieve the one at # # index 0
30
- username = query_params.get('username', '')[0]
31
- password = query_params.get('password', '')[0]
32
  view = query_params.get('view', None)[0]
33
 
34
  # Super basic (and not recommended) way to store the credentials
 
27
 
28
  query_params = st.experimental_get_query_params()
29
  # There is only one value for each parameter, retrieve the one at # # index 0
30
+ username = query_params.get('username')[0]
31
+ password = query_params.get('password')[0]
32
  view = query_params.get('view', None)[0]
33
 
34
  # Super basic (and not recommended) way to store the credentials