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
from collections import Iterable is now from collections.abc import Iterable
Error message:
Traceback (most recent call last):
File ".../app/onemax_island_scoop.py", line 28, in <module>
from scoop import futures
File ".../venv/lib/python3.10/site-packages/scoop/futures.py", line 19, in <module>
from collections import namedtuple, Iterable
ImportError: cannot import name 'Iterable' from 'collections' (/opt/homebrew/Cellar/python@3.10/3.10.1/Frameworks/Python.framework/Versions/3.10/lib/python3.10/collections/__init__.py)
The text was updated successfully, but these errors were encountered:
tiuri101
added a commit
to oopnet/oopnet
that referenced
this issue
Feb 22, 2022
In Python 3.10 this class has been moved.
from collections import Iterable
is nowfrom collections.abc import Iterable
Error message:
The text was updated successfully, but these errors were encountered: