Skip to content

Commit 50f99e9

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/commands/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4927,7 +4927,7 @@ class HashCommands(CommandsProtocol):
49274927
see: https://redis.io/topics/data-types-intro#redis-hashes
49284928
"""
49294929

4930-
def hdel(self, name: str, *keys: List) -> Union[Awaitable[int], int]:
4930+
def hdel(self, name: str, *keys: str) -> Union[Awaitable[int], int]:
49314931
"""
49324932
Delete ``keys`` from hash ``name``
49334933

0 commit comments

Comments
 (0)