(self)
| 52 | class GetSysInfo(TelloModule): |
| 53 | """ Get system information from the target Tello. """ |
| 54 | def run(self): |
| 55 | self._send_udp_command("temp?") |
| 56 | print_formatted_text(self._last_cmd_resp) |
| 57 | |
| 58 | |
| 59 | class Land(TelloModule): |
nothing calls this directly
no test coverage detected