Open sinewalker opened 1 year ago
In Python 3.3, the collections.Iterable class was moved into its own module
Instead, now test the Abstract Base Class Iterable type.
https://docs.python.org/3/library/collections.abc.html
This fixes the error module 'collections' has not attribute 'Iterable' when calling methods such as minecraft.postToChat()
module 'collections' has not attribute 'Iterable'
minecraft.postToChat()
Fixes #68
Thank you, it works.
In Python 3.3, the collections.Iterable class was moved into its own module
Instead, now test the Abstract Base Class Iterable type.
https://docs.python.org/3/library/collections.abc.html
This fixes the error
module 'collections' has not attribute 'Iterable'
when calling methods such asminecraft.postToChat()
Fixes #68