headers.raw
is typing.List[typing.Tuple[bytes, bytes]]
I want to merge it into another dict, like the one below:
client.build_request(headers=dict(request.headers.raw) | {"foo": "bar"}),
However I got the error
expected "Union[Headers, Dict[str, str], Dict[bytes, bytes], Sequence[Tuple[str, str]], Sequence[Tuple[bytes, bytes]], None]"
Is there some way to do this? I am using Python 3.10, and I was planning to use the new features on merging dicts