Open jwkvam opened 7 years ago
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?
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.
Sequence
MutableSequence
ndarray.insert()
I'm getting an error when I try to iterate over an numpy array:
Do we need the main class to also inherit
Iterable
?