Closed OTFlorian closed 2 years ago
Returning response.json() throws a requests.exceptions.JSONDecodeError exception in several methods. Therefore, I removed the return statements from the ones that I tried (user_groups__post, user_groups__delete and user__put).
response.json()
requests.exceptions.JSONDecodeError
user_groups__post
user_groups__delete
user__put
Is this PR getting merged? Or is there a better way to deal with the exceptions?
Returning
response.json()
throws arequests.exceptions.JSONDecodeError
exception in several methods. Therefore, I removed the return statements from the ones that I tried (user_groups__post
,user_groups__delete
anduser__put
).