(self)
| 557 | |
| 558 | @functools.cached_property |
| 559 | def _meta(self): |
| 560 | args = [op._meta if isinstance(op, Expr) else op for op in self._args] |
| 561 | return self.operation(*args, **self._kwargs) |
| 562 | |
| 563 | @functools.cached_property |
| 564 | def _kwargs(self) -> dict: |