diff --git a/pystages/cncrouter.py b/pystages/cncrouter.py index 9d8145d..14d1ee0 100644 --- a/pystages/cncrouter.py +++ b/pystages/cncrouter.py @@ -238,12 +238,6 @@ def get_current_status(self) -> Optional[Tuple[CNCStatus, dict]]: # Possible outputs # '' - if status.startswith("ALARM:1"): - # The ALARM message is followed by something like - # '[MSG:Reset to continue]' - next = self.receive() - raise CNCError(next, CNCStatus.ALARM) - # Discard any unwanted format if not (status.startswith("<") and status.endswith(">")): print(f"Response to '?' is unexpected: {status}")