Skip to content

Commit

Permalink
Techdebt: Ignore proxy typing issue (#7444)
Browse files Browse the repository at this point in the history
  • Loading branch information
bblommers authored Mar 8, 2024
1 parent 0455ebb commit 643c0da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moto/moto_proxy/proxy3.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def do_GET(self) -> None:
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 = {}

Expand Down

0 comments on commit 643c0da

Please sign in to comment.