summaryrefslogtreecommitdiff
path: root/kvmd/plugins/atx/__init__.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-06-06 06:29:29 +0300
committerDevaev Maxim <[email protected]>2020-06-06 06:29:29 +0300
commit1d7d4100a57b5d654c1434c91e97187fe25698ef (patch)
treed4709afc3fa03ceac99f1880726ef8639845702d /kvmd/plugins/atx/__init__.py
parent4f3ebf0fd1100d2076a626d9ae39f414e9adf90b (diff)
common component interface
Diffstat (limited to 'kvmd/plugins/atx/__init__.py')
-rw-r--r--kvmd/plugins/atx/__init__.py2
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]: