Skip to content

Commit b1ca339

Browse files
authored
Fix typo in comment (#2025)
1 parent 6149004 commit b1ca339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
ScriptTextT = _StringLikeT
3030
TimeoutSecT = Union[int, float, _StringLikeT]
3131
# Mapping is not covariant in the key type, which prevents
32-
# Mapping[_StringLikeT, X from accepting arguments of type Dict[str, X]. Using
32+
# Mapping[_StringLikeT, X] from accepting arguments of type Dict[str, X]. Using
3333
# a TypeVar instead of a Union allows mappings with any of the permitted types
3434
# to be passed. Care is needed if there is more than one such mapping in a
3535
# type signature because they will all be required to be the same key type.

0 commit comments

Comments
 (0)