diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2023-09-17 04:38:12 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2023-09-17 04:38:12 +0300 |
commit | a32e4a1629a20026c364059c7bbaec1dbd64353b (patch) | |
tree | ae1f805e95a992742e9904d503a0848189af747b /include/py/homekit/telegram/bot.py | |
parent | 44aad914a3cea1b6e39cf5db7bebeafb59191707 (diff) |
multiple fixes
Diffstat (limited to 'include/py/homekit/telegram/bot.py')
-rw-r--r-- | include/py/homekit/telegram/bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/py/homekit/telegram/bot.py b/include/py/homekit/telegram/bot.py index 2efd9e4..f5f620a 100644 --- a/include/py/homekit/telegram/bot.py +++ b/include/py/homekit/telegram/bot.py @@ -266,7 +266,7 @@ class conversation: return self.invoke(state, ctx) return _invoke - def invoke(self, state, ctx: Context): + async def invoke(self, state, ctx: Context): self._logger.debug(f'invoke, state={state}') for item in dir(self): f = getattr(self, item) |