fix: make flake8 happy

pull/858/head
Raphaël Vinot 2022-07-28 15:12:40 +02:00
parent b85444a7ad
commit 58976dc35c
1 changed files with 1 additions and 1 deletions

View File

@ -3525,7 +3525,7 @@ class PyMISP:
def _check_response(self, response: requests.Response, lenient_response_type: bool = False, expect_json: bool = False) -> Union[Dict, str]:
"""Check if the response from the server is not an unexpected error"""
if response.status_code >= 500:
headers_without_auth = {i:response.request.headers[i] for i in response.request.headers if i!='Authorization'}
headers_without_auth = {i: response.request.headers[i] for i in response.request.headers if i != 'Authorization'}
logger.critical(everything_broken.format(headers_without_auth, response.request.body, response.text))
raise MISPServerError(f'Error code 500:\n{response.text}')