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
array.array objects are essentially efficient lists with a single element type. They have a size and can be iterated over, but mypy doesn't seem to know this:
floats.py:105: error: Argument 1 to "len" has incompatible type "array"; expected "Sized"
floats.py:107: error: Argument 1 to "enumerate" has incompatible type "array"; expected Iterable[<nothing>]