Skip to content

Commit d63ba59

Browse files
dmkulazhenkodvora-h
andcommitted
Fix typing for HashCommand.hdel (#3029)
Co-authored-by: dvora-h <[email protected]>
1 parent 7b1965a commit d63ba59

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
@@ -4920,7 +4920,7 @@ class HashCommands(CommandsProtocol):
49204920
see: https://redis.io/topics/data-types-intro#redis-hashes
49214921
"""
49224922

4923-
def hdel(self, name: str, *keys: List) -> Union[Awaitable[int], int]:
4923+
def hdel(self, name: str, *keys: str) -> Union[Awaitable[int], int]:
49244924
"""
49254925
Delete ``keys`` from hash ``name``
49264926

0 commit comments

Comments
 (0)