| 37 | |
| 38 | @dataclass |
| 39 | class AutoExecutor(Executor): |
| 40 | def _wrap(self, fun: Callable) -> Callable: |
| 41 | raise ValueError("You can't wrap a function using AutoExecutor.") |
| 42 | |
| 43 | @property |
| 44 | def _apply_expression_type(self) -> type[expr.ApplyExpression]: |
| 45 | raise ValueError("AutoExecutor has no apply expression type.") |
| 46 | |
| 47 | |
| 48 | def auto_executor() -> Executor: |
no outgoing calls
no test coverage detected