rows icon indicating copy to clipboard operation
rows copied to clipboard

Python 3.10: cannot import name 'Iterator' from 'collections'

Open fagci opened this issue 2 years ago • 0 comments

File "/data/data/com.termux/files/usr/lib/python3.10/site-packages/rows/plugins/utils.py", line 20, in <module> 
from collections import Iterator, OrderedDict            
ImportError: cannot import name 'Iterator' from 'collections'

Maybe this will be fix:

try:
    from collections.abc import Iterator
except ImportError:
    from collections import Iterator

fagci avatar Nov 04 '21 15:11 fagci