(self, array)
| 240 | """Mimic a BackendArray wrapper around DuckArrayWrapper""" |
| 241 | |
| 242 | def __init__(self, array): |
| 243 | self.array = DuckArrayWrapper(array) |
| 244 | self.shape = array.shape |
| 245 | self.dtype = array.dtype |
| 246 | |
| 247 | def get_array(self): |
| 248 | return self.array |
nothing calls this directly
no test coverage detected