spoolman: really fix type checking this time

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan
2024-01-16 13:57:20 -05:00
parent 8d6def7e41
commit 66de18f9b6

View File

@@ -103,7 +103,8 @@ class SpoolManager:
def _get_response_error(self, response: HttpResponse) -> str:
err_msg = f"HTTP error: {response.status_code} {response.error}"
try:
resp: Dict[str, Any] = response.json()
resp = response.json()
assert isinstance(resp, dict)
json_msg: str = resp["message"]
except Exception:
pass