niolabs / nio

The Python block development framework for the nio software platform

Home Page:https://docs.n.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Depreciated import statement in base.py

walkrr opened this issue · comments

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