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
Since I run the command from docker hub, it prints below traceback
Traceback (most recent call last):
File "/usr/local/bin/get_oracle_a1", line 5, in <module>
from get_oracle_a1 import main
File "/usr/local/lib/python3.10/site-packages/get_oracle_a1/__init__.py", line 8, in <module>
from get_oracle_a1 import commands, config, helpers, usecases
File "/usr/local/lib/python3.10/site-packages/get_oracle_a1/helpers.py", line 1, in <module>
from collections import Iterable, Sequence
ImportError: cannot import name 'Iterable' from 'collections' (/usr/local/lib/python3.10/collections/__init__.py)
The Iterable belongs to collections.abc in Python 3.10 so that should be changed like,
from collections.abc import Iterable, Sequence
The text was updated successfully, but these errors were encountered:
Since I run the command from docker hub, it prints below traceback
The
Iterable
belongs tocollections.abc
in Python 3.10 so that should be changed like,from collections.abc import Iterable, Sequence
The text was updated successfully, but these errors were encountered: