(self)
| 64 | class GetSysInfo(CmeModule): |
| 65 | """ Get system information from the target C-me. """ |
| 66 | def run(self): |
| 67 | r = self._get_sysinfo() |
| 68 | if r is not None: |
| 69 | print_formatted_text(r) |
| 70 | |
| 71 | |
| 72 | class PowerOff(CmeModule): |
nothing calls this directly
no test coverage detected