Skip to content

Commit f073e1b

Browse files
committed
Simplify abstract classes
1 parent 77246cc commit f073e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/hashing/hash_map.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __bool__(self):
3232
_deleted = _DeletedItem()
3333

3434

35-
class HashMap(MutableMapping, Generic[KEY, VAL]):
35+
class HashMap(MutableMapping[KEY, VAL]):
3636
"""
3737
Hash map with open addressing.
3838
"""

0 commit comments

Comments
 (0)