r"""Resets the node to its initial state.
(self, *args: Any, **kwargs: Any)
| 33 | |
| 34 | @check_if_running(False) |
| 35 | def reset(self, *args: Any, **kwargs: Any) -> Any: |
| 36 | r"""Resets the node to its initial state.""" |
| 37 | self._channel = TaskChannel() |
| 38 | self._running = False |
| 39 | |
| 40 | @abstractmethod |
| 41 | def set_channel(self, channel: TaskChannel): |
no test coverage detected