Skip to content

Commit 4a7216b

Browse files
committed
commit message: fix(redis-client): fix broken types
1 parent 7ee3bf2 commit 4a7216b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/commands/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ def select(self, index: int, **kwargs) -> ResponseT:
988988
return self.execute_command("SELECT", index, **kwargs)
989989

990990
def info(
991-
self, section: Optional[srt] = None, *args: List[str], **kwargs
991+
self, section: Optional[str] = None, *args: List[str], **kwargs
992992
) -> ResponseT:
993993
"""
994994
Returns a dictionary containing information about the Redis server

0 commit comments

Comments
 (0)