@@ -49,14 +49,14 @@ _Data: TypeAlias = str | bytes | Mapping[str, Any] | Iterable[tuple[str, str | N
49
49
_Auth : TypeAlias = Union [tuple [str , str ], _auth .AuthBase , Callable [[PreparedRequest ], PreparedRequest ]]
50
50
_Cert : TypeAlias = Union [str , tuple [str , str ]]
51
51
_Files : TypeAlias = (
52
- MutableMapping [str , SupportsRead [str | bytes ] | str | bytes ]
53
- | MutableMapping [str , tuple [str | None , SupportsRead [str | bytes ] | str | bytes ]]
54
- | MutableMapping [str , tuple [str | None , SupportsRead [str | bytes ] | str | bytes , str ]]
55
- | MutableMapping [str , tuple [str | None , SupportsRead [str | bytes ] | str | bytes , str , _TextMapping ]]
52
+ Mapping [str , SupportsRead [str | bytes ] | str | bytes ]
53
+ | Mapping [str , tuple [str | None , SupportsRead [str | bytes ] | str | bytes ]]
54
+ | Mapping [str , tuple [str | None , SupportsRead [str | bytes ] | str | bytes , str ]]
55
+ | Mapping [str , tuple [str | None , SupportsRead [str | bytes ] | str | bytes , str , _TextMapping ]]
56
56
)
57
57
_Hook : TypeAlias = Callable [[Response ], Any ]
58
- _Hooks : TypeAlias = MutableMapping [str , _Hook | list [_Hook ]]
59
- _HooksInput : TypeAlias = MutableMapping [str , Iterable [_Hook ] | _Hook ]
58
+ _Hooks : TypeAlias = Mapping [str , _Hook | list [_Hook ]]
59
+ _HooksInput : TypeAlias = Mapping [str , Iterable [_Hook ] | _Hook ]
60
60
61
61
_ParamsMappingKeyType : TypeAlias = str | bytes | int | float
62
62
_ParamsMappingValueType : TypeAlias = str | bytes | int | float | Iterable [str | bytes | int | float ] | None
0 commit comments