| 1 | def statemethod(method): |
| 2 | def call_statemethod(self, *args, **kwargs): |
| 3 | # Use self.state.<method> if available, else method itself. |
| 4 | real_method = getattr(self.state, method.func_name, method) |
nothing calls this directly
no test coverage detected