Skip to content

Commit

Permalink
Redis: Correct ExpiryT alias (#12611)
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahr committed Sep 2, 2024
1 parent 001c3b6 commit 4d75bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/redis/redis/typing.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ EncodedT: TypeAlias = bytes | memoryview
DecodedT: TypeAlias = str | int | float
EncodableT: TypeAlias = EncodedT | DecodedT
AbsExpiryT: TypeAlias = int | datetime
ExpiryT: TypeAlias = float | timedelta
ExpiryT: TypeAlias = int | timedelta
ZScoreBoundT: TypeAlias = float | str
BitfieldOffsetT: TypeAlias = int | str
_StringLikeT: TypeAlias = bytes | str | memoryview # noqa: Y043
Expand Down

0 comments on commit 4d75bc8

Please sign in to comment.