Merge pull request #314 from raigorx/patch-1

fix: Hashable import
This commit is contained in:
Satwik Kansal 2023-09-01 16:06:23 +05:30 committed by GitHub
commit 19d4b07515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
README.md vendored
View File

@ -1121,7 +1121,7 @@ False
<!-- Example ID: 9f6d8cf0-e1b5-42d0-84a0-4cfab25a0bc0 --->
**Output:**
```py
>>> from collections import Hashable
>>> from collections.abc import Hashable
>>> issubclass(list, object)
True
>>> issubclass(object, Hashable)