(self, name: Key, index: int)
| 1287 | return self.operation(*args) |
| 1288 | |
| 1289 | def _task(self, name: Key, index: int) -> Task: |
| 1290 | args = [self._blockwise_arg(self.frame, index)] + [ |
| 1291 | self.state_data[index], |
| 1292 | self.frac, |
| 1293 | self.operand("replace"), |
| 1294 | ] |
| 1295 | return Task(name, self.operation, *args) |
| 1296 | |
| 1297 | |
| 1298 | class Query(Blockwise): |
nothing calls this directly
no test coverage detected