Skip to content

Commit e96b41f

Browse files
committed
fix(json): move to using the decode error directly
1 parent 772ce6b commit e96b41f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

knockapi/client.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import requests
2+
from json.decoder import JSONDecodeError
23

34
__version__ = '0.4.2'
45

@@ -27,7 +28,7 @@ def request(self, method, endpoint, payload=None):
2728
if r.ok:
2829
try:
2930
return r.json()
30-
except ValueError:
31+
except JSONDecodeError:
3132
return None
3233

3334
return r.raise_for_status()

0 commit comments

Comments
 (0)