Techdebt: Ignore proxy typing issue (#7444)

This commit is contained in:
Bert Blommers 2024-03-08 19:55:45 +00:00 committed by GitHub
parent 0455ebb953
commit 643c0dae17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -159,7 +159,7 @@ class ProxyRequestHandler(BaseHTTPRequestHandler):
boundary = self.headers["Content-Type"].split("boundary=")[-1]
req_body, form_data = get_body_from_form_data(req_body, boundary) # type: ignore
for key, val in form_data.items():
self.headers[key] = [val]
self.headers[key] = [val] # type: ignore[assignment]
else:
form_data = {}