1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-16 06:15:25 +00:00

Remove double process_response function call

since it's called in anon_post already
This commit is contained in:
Viktor Villainov 2019-09-03 02:27:16 -04:00 committed by Ivan Habunek
parent 6f8cd86417
commit 616483d78a
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95

View File

@ -55,7 +55,7 @@ def login(app, username, password):
if response.is_redirect:
raise AuthenticationError()
return http.process_response(response).json()
return response.json()
def get_browser_login_url(app):
@ -79,9 +79,7 @@ def request_access_token(app, authorization_code):
'redirect_uri': 'urn:ietf:wg:oauth:2.0:oob',
}
response = http.anon_post(url, data, allow_redirects=False)
return http.process_response(response).json()
return http.anon_post(url, data, allow_redirects=False).json()
def post_status(