Currently, `numpy` arrays are not registered as a `collections.abc.Sequence` (see: https://github.com/numpy/numpy/issues/2776). As a result, code like ```python [1, two] = np.array([1, 2]) ``` fails. To solve this, Coconut should automatically register `numpy` arrays as `Sequence`s.