diff --git a/src/mock_vws/_query_validators/exceptions.py b/src/mock_vws/_query_validators/exceptions.py index 0fd4a04b8..857f297c7 100644 --- a/src/mock_vws/_query_validators/exceptions.py +++ b/src/mock_vws/_query_validators/exceptions.py @@ -532,25 +532,26 @@ def __init__(self) -> None: """Initialize a missing content type response.""" super().__init__() self.status_code = HTTPStatus.BAD_REQUEST - jetty_content_type_error = textwrap.dedent( - text="""\ - - - - Error 400 Bad Request - - -

HTTP ERROR 400 Bad Request

- - - - -
URI:http://cloudreco.vuforia.com/v1/query
STATUS:400
MESSAGE:Bad Request
-
Powered by Jetty:// 12.0.20
- - - - """, # noqa: E501 + jetty_content_type_error = ( + "\n" + "\n" + '\n' + "Error 400 Bad Request\n" + "\n" + "\n" + "

HTTP ERROR 400 Bad Request

\n" + "\n" + "" + "\n" + "\n" + "\n" + "
URI:http://cloudreco.vuforia.com/v1/query
STATUS:400
MESSAGE:Bad Request
\n" + '
' + "Powered by Jetty:// 12.0.20
\n" + "\n" + "\n" + "\n" ) self.response_text = jetty_content_type_error self.headers = {