`TaskState`: this task's state Raises: `WorkflowException`: If setting the state results in a "backwards" state change.
(self)
| 89 | |
| 90 | @property |
| 91 | def state(self): |
| 92 | """`TaskState`: this task's state |
| 93 | |
| 94 | Raises: |
| 95 | `WorkflowException`: If setting the state results in a "backwards" state change. |
| 96 | """ |
| 97 | return self._state |
| 98 | |
| 99 | @state.setter |
| 100 | def state(self, value): |
nothing calls this directly
no test coverage detected