(self)
| 270 | |
| 271 | @property |
| 272 | def func(self) -> Callable: |
| 273 | if not self._func: |
| 274 | self._func = import_attribute(self.serialized_func) |
| 275 | return self._func |
| 276 | |
| 277 | @property |
| 278 | def max_stored_executions(self) -> Optional[int]: |
no test coverage detected