Techdebt: Ignore proxy typing issue (#7444)
This commit is contained in:
parent
0455ebb953
commit
643c0dae17
@ -159,7 +159,7 @@ class ProxyRequestHandler(BaseHTTPRequestHandler):
|
|||||||
boundary = self.headers["Content-Type"].split("boundary=")[-1]
|
boundary = self.headers["Content-Type"].split("boundary=")[-1]
|
||||||
req_body, form_data = get_body_from_form_data(req_body, boundary) # type: ignore
|
req_body, form_data = get_body_from_form_data(req_body, boundary) # type: ignore
|
||||||
for key, val in form_data.items():
|
for key, val in form_data.items():
|
||||||
self.headers[key] = [val]
|
self.headers[key] = [val] # type: ignore[assignment]
|
||||||
else:
|
else:
|
||||||
form_data = {}
|
form_data = {}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user