Skip to content

Commit 19d4b07

Browse files
authored
Merge pull request satwikkansal#314 from raigorx/patch-1
fix: Hashable import
2 parents f32e9d3 + ab82f96 commit 19d4b07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1121,7 +1121,7 @@ False
11211121
<!-- Example ID: 9f6d8cf0-e1b5-42d0-84a0-4cfab25a0bc0 --->
11221122
**Output:**
11231123
```py
1124-
>>> from collections import Hashable
1124+
>>> from collections.abc import Hashable
11251125
>>> issubclass(list, object)
11261126
True
11271127
>>> issubclass(object, Hashable)

0 commit comments

Comments
 (0)