File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ def delete_user_credentials(self, user_name: str) -> None:
7979
8080
8181def get_user_credentials (user_name : str ) -> Credentials :
82- """Gets stored crednetials for a user, if it exists."""
82+ """Gets stored credentials for a user, if it exists."""
8383 return Store ().get_user_credentials (user_name )
8484
8585
@@ -138,7 +138,7 @@ def on_oauth2_callback() -> flask.Response:
138138 saved_state = flask .session ["state" ]
139139 state = flask .request .args ["state" ]
140140 if state != saved_state :
141- logging .warn ("Mismatched state in oauth response" )
141+ logging .warning ("Mismatched state in oauth response" )
142142 return flask .abort (403 )
143143
144144 redirect_uri = flask .url_for ("auth.on_oauth2_callback" , _external = True )
You can’t perform that action at this time.
0 commit comments