Skip to content

Commit

Permalink
fixed mypy compatibility for py3.8 (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
beliaev-maksim committed Oct 23, 2023
1 parent 87db9df commit 5c6a3b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions responses/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ def __call__(
HTTPAdapter,
PreparedRequest,
bool,
float | tuple[float, float] | tuple[float, None] | None,
bool | str,
bytes | str | tuple[bytes | str, bytes | str] | None,
Mapping[str, str] | None,
Union[float, Tuple[float, float], Tuple[float, None], None],
Union[bool, str],
Union[bytes, str, Tuple[Union[bytes, str], Union[bytes, str]], None],
Optional[Mapping[str, str]],
],
models.Response,
]
Expand Down

0 comments on commit 5c6a3b1

Please sign in to comment.