(self, msg)
| 714 | self.low = start_state |
| 715 | |
| 716 | def push(self, msg): |
| 717 | # type: (str) -> None |
| 718 | if self.low: |
| 719 | self._send(msg) |
| 720 | else: |
| 721 | self._high_send(msg) |
| 722 | high_push = push |
| 723 | |
| 724 | def on_trigger(self, msg): |
nothing calls this directly
no test coverage detected