Closed HSILA closed 1 month ago
This PR fixes a SyntaxError caused by unmatched brackets in an f-string within the authentication_model.py file.
SyntaxError
authentication_model.py
Corrected the f-string syntax in authentication_model.py:
# Before st.session_state['name'] = f'{result['given_name']} {result['family_name']}' # After st.session_state['name'] = f"{result['given_name']} {result['family_name']}"
Fixes #210
Hey @HSILA, thank you for bringing this to my attention! I have quickly fixed it and made some minor other changes as well, so while I can't accept this specific pull request, I really appreciate it nonetheless.
This PR fixes a
SyntaxError
caused by unmatched brackets in an f-string within theauthentication_model.py
file.Corrected the f-string syntax in authentication_model.py:
Fixes #210