r.json() doesn't throw simplejson error any more
This commit is contained in:
parent
b671843aea
commit
e8c60e9f9b
|
@ -4,7 +4,6 @@ import typing
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
import simplejson.errors
|
|
||||||
from flask import render_template
|
from flask import render_template
|
||||||
|
|
||||||
from . import headers
|
from . import headers
|
||||||
|
@ -86,7 +85,7 @@ def wdqs(query: str) -> list[Row]:
|
||||||
|
|
||||||
try:
|
try:
|
||||||
return typing.cast(list[Row], r.json()["results"]["bindings"])
|
return typing.cast(list[Row], r.json()["results"]["bindings"])
|
||||||
except simplejson.errors.JSONDecodeError:
|
except requests.exceptions.JSONDecodeError:
|
||||||
raise QueryError(query, r)
|
raise QueryError(query, r)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue