Open Gennadiyev opened 1 year ago
Whe running with CLI on Python>3.3, an error will be raised:
ImportError: cannot import name 'Iterable' from 'collections' (.../collections/__init__.py)
Introduced in python 3.3, the previous collections.Iterable is removed.
collections.Iterable
collection_abc
The latter solution is used for the sake of simplicity.
(🟢 this commit has no breaking changes and is a minor patch.)
Whe running with CLI on Python>3.3, an error will be raised:
Cause
Introduced in python 3.3, the previous
collections.Iterable
is removed.Potential Fix
collection_abc
)Commit Info
The latter solution is used for the sake of simplicity.
Tests
(🟢 this commit has no breaking changes and is a minor patch.)