Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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'
|
31 |
-
password = query_params.get('password'
|
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
|