Fix running tests with Python 3.9

This commit is contained in:
grossmj 2020-11-11 17:38:06 +10:30
parent acc5c7ebfa
commit 7837081eba

View File

@ -83,7 +83,7 @@ class Query:
if response.content is not None:
if response.headers.get("content-type") == "application/json":
try:
response.json = response.json(encoding="utf-8")
response.json = response.json()
except ValueError:
response.json = None
# else: