(self)
| 906 | # ── wiring ──────────────────────────────────────────────────────────────── |
| 907 | |
| 908 | def start_wire_mode(self): |
| 909 | self._cancel_placement() |
| 910 | self._mode = _Mode.WIRING |
| 911 | self._wire_points = [] |
| 912 | self.wire_mode_started.emit() |
| 913 | |
| 914 | def finish_wire(self): |
| 915 | self._end_wire(commit=True) |
no test coverage detected