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
Base.py includes the line
from collections import Iterable
which is depreciated in python 3.10 and needs to be replaced with
from collections.abc import Iterable
The text was updated successfully, but these errors were encountered:
Base.py includes the line
from collections import Iterable
which is depreciated in python 3.10 and needs to be replaced with
from collections.abc import Iterable
The text was updated successfully, but these errors were encountered: