You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After attempting to use just your basic examples I was presented with the following Attribute Error: AttributeError: module 'collections' has no attribute 'Hashable'
I am using Python 3.11.0. After taking a look at the source code it appears collections has updated their implementations and structure and the Hashable attribute is now located in "collections.abc.Hashable"
The error can be fixed by updating the following line
After attempting to use just your basic examples I was presented with the following Attribute Error:
AttributeError: module 'collections' has no attribute 'Hashable'
I am using Python 3.11.0. After taking a look at the source code it appears collections has updated their implementations and structure and the Hashable attribute is now located in "
collections.abc.Hashable
"The error can be fixed by updating the following line
if not isinstance(args, collections.Hashable)
:with -
if not isinstance(args, collections.abc.Hashable):
The text was updated successfully, but these errors were encountered: