(self)
| 224 | return self.operands[type(self)._parameters.index(key)] |
| 225 | |
| 226 | def dependencies(self): |
| 227 | # Dependencies are `Expr` operands only |
| 228 | return [operand for operand in self.operands if isinstance(operand, Expr)] |
| 229 | |
| 230 | def _task(self, key: Key, index: int) -> Task: |
| 231 | """The task for the i'th partition |
no outgoing calls
no test coverage detected