machinalis / mypy-data

mypy typesheds for the Python data stack
BSD 3-Clause "New" or "Revised" License
86 stars 23 forks source link

inherit Iterable #18

Open jwkvam opened 7 years ago

jwkvam commented 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?

gwerbin commented 6 years ago

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.