(self)
| 55 | class GetSysInfo(FlittCommandModule): |
| 56 | """ Get system information from the target Flitt. """ |
| 57 | def run(self): |
| 58 | r = self._get_sysinfo() |
| 59 | if r is not None: |
| 60 | print_formatted_text(r) |
| 61 | |
| 62 | |
| 63 | class PowerOff(FlittCommandModule): |
nothing calls this directly
no test coverage detected