From c2dc1cf1492a6e4c3738501c145272f980a0a159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Fri, 20 Dec 2024 23:19:13 -0800 Subject: [PATCH] Add _check_internal back --- python/lvmecp/actor/actor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/lvmecp/actor/actor.py b/python/lvmecp/actor/actor.py index 7d12eb7..b4ed0bc 100644 --- a/python/lvmecp/actor/actor.py +++ b/python/lvmecp/actor/actor.py @@ -74,6 +74,9 @@ async def emit_status(self, delay: float = 30.0): await self.send_command(self.name, "status", internal=True) await asyncio.sleep(delay) + async def _check_internal(self): + return await super()._check_internal() + async def _troubleshoot_internal( self, error_code: ErrorCodesBase,