Retrieve the current machine status.
(self, line)
| 923 | pass |
| 924 | |
| 925 | def do_status(self, line): |
| 926 | """Retrieve the current machine status.""" |
| 927 | status = self.machine.status() |
| 928 | print(json.dumps(status, indent=4)) |
| 929 | |
| 930 | def do_override(self, line): |
| 931 | """Handle override commands.""" |