diff options
author | Devaev Maxim <[email protected]> | 2020-06-06 06:29:29 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-06-06 06:29:29 +0300 |
commit | 1d7d4100a57b5d654c1434c91e97187fe25698ef (patch) | |
tree | d4709afc3fa03ceac99f1880726ef8639845702d /kvmd/plugins/atx/__init__.py | |
parent | 4f3ebf0fd1100d2076a626d9ae39f414e9adf90b (diff) |
common component interface
Diffstat (limited to 'kvmd/plugins/atx/__init__.py')
-rw-r--r-- | kvmd/plugins/atx/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/atx/__init__.py b/kvmd/plugins/atx/__init__.py index b536ef87..bc0c2c41 100644 --- a/kvmd/plugins/atx/__init__.py +++ b/kvmd/plugins/atx/__init__.py @@ -47,7 +47,7 @@ class AtxIsBusyError(IsBusyError, AtxError): # ===== class BaseAtx(BasePlugin): - def get_state(self) -> Dict: + async def get_state(self) -> Dict: raise NotImplementedError async def poll_state(self) -> AsyncGenerator[Dict, None]: |