Updated RequestContent to include bytearray in the Union

This commit is contained in:
Joey Ekstrom 2025-06-24 09:03:55 -07:00
parent 7b829bc9bf
commit 64dc8f24e9

View File

@ -65,7 +65,7 @@ AuthTypes = Union[
"Auth",
]
RequestContent = Union[str, bytes, Iterable[bytes], AsyncIterable[bytes]]
RequestContent = Union[str, bytes, bytearray, Iterable[bytes], AsyncIterable[bytes]]
ResponseContent = Union[str, bytes, Iterable[bytes], AsyncIterable[bytes]]
ResponseExtensions = Mapping[str, Any]