(self, array)
| 964 | __slots__ = ("array",) |
| 965 | |
| 966 | def __init__(self, array): |
| 967 | self.array = _wrap_numpy_scalars(as_indexable(array)) |
| 968 | |
| 969 | def get_duck_array(self): |
| 970 | duck_array = self.array.get_duck_array() |
nothing calls this directly
no test coverage detected