(self)
| 165 | return f"{self.__class__.__name__}(\n{self._array}\n{self.attrs}\n)" |
| 166 | |
| 167 | def __array__(self): |
| 168 | return np.asarray(self._array) |
| 169 | |
| 170 | def __array_ufunc__(self, ufunc, method, *inputs, **kwargs): |
| 171 | if method == '__call__': |
no outgoing calls
no test coverage detected