spoolman: type checking fix

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2024-01-16 13:53:21 -05:00
parent c196f7548c
commit 8d6def7e41
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 2 additions and 1 deletions

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:
json_msg = response.json()["message"]
resp: Dict[str, Any] = response.json()
json_msg: str = resp["message"]
except Exception:
pass
else: