Catch json decode error

pull/7/head
Micke Nordin 1 year ago
parent 665942653e
commit f16eb88eab
Signed by: micke
GPG Key ID: 0DA0A7A5708FE257

@ -313,6 +313,10 @@ def main() -> int:
except KeyError:
output(response.json())
return 1
except json.JSONDecodeError:
output(
error("Could not decode api response as JSON", "Could not decode"))
return 1
headers = {"Authorization": "Bearer {}".format(token)}
# Route based on command

Loading…
Cancel
Save