r"""Get the keyword arguments of the operation corresponding to this Expr.
(self)
| 214 | |
| 215 | @property |
| 216 | def kwargs(self): |
| 217 | r"""Get the keyword arguments of the operation corresponding to this Expr.""" |
| 218 | _, kwargs = self.unflatten_args(self.inputs) |
| 219 | return kwargs |
| 220 | |
| 221 | @property |
| 222 | def args(self): |
nothing calls this directly
no test coverage detected