Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/requests/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class _ValidatedRequest(PreparedRequest):
VerifyType: TypeAlias = bool | str
CertType: TypeAlias = str | tuple[str, str] | None
JsonType: TypeAlias = (
None | bool | int | float | str | list["JsonType"] | dict[str, "JsonType"]
None | bool | int | float | str | list["JsonType"] | Mapping[str, "JsonType"]
Comment thread
nateprewitt marked this conversation as resolved.
Outdated
)

# TypedDicts for Unpack kwargs (PEP 692)
Expand Down
Loading