mypy-data
mypy-data copied to clipboard
inherit Iterable
I'm getting an error when I try to iterate over an numpy array:
error: Iterable expected
Do we need the main class to also inherit Iterable
?
Looking here, it should probably inherit from Sequence
. It would also inherit from MutableSequence
but for the fact that there is no ndarray.insert()
method.