(self)
| 27 | |
| 28 | class Object: |
| 29 | def __array__(self) -> np.ndarray[Any, np.dtype[np.object_]]: |
| 30 | ret = np.empty((), dtype=object) |
| 31 | ret[()] = self |
| 32 | return ret |
| 33 | |
| 34 | def __sub__(self, value: Any) -> Object: |
| 35 | return self |
nothing calls this directly
no outgoing calls
no test coverage detected