fix mypy finding

This commit is contained in:
David Lord 2024-11-01 18:06:34 -07:00
parent c62b03bcfd
commit 98ae718976
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926

View file

@ -1226,7 +1226,7 @@ class Flask(App):
# extend existing headers with provided headers
if headers:
rv.headers.update(headers) # type: ignore[arg-type]
rv.headers.update(headers)
return rv