Skip to content

Commit

Permalink
chore: delegate sanitization of headers to httpx
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-schoonjans committed Mar 8, 2024
1 parent e1eb6a6 commit c3b2cc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/waylay/sdk/api/serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def build_api_request(
extra_params: Optional[QueryParamTypes] = kwargs.pop("params", None)
request = {
"params": build_params(query_params, extra_params),
"headers": to_jsonable_python(headers),
"headers": headers,
"files": files,
**kwargs,
}
Expand Down

0 comments on commit c3b2cc0

Please sign in to comment.