diff options
-rw-r--r-- | poezio/plugin_e2ee.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py index 2104a628..bcaba5e3 100644 --- a/poezio/plugin_e2ee.py +++ b/poezio/plugin_e2ee.py @@ -395,8 +395,10 @@ class E2EEPlugin(BasePlugin): # Call the enabled encrypt method func = self._enabled_tabs[jid] if iscoroutinefunction(func): + # pylint: disable=unexpected-keyword-arg await func(message, tab, passthrough=True) else: + # pylint: disable=unexpected-keyword-arg func(message, tab, passthrough=True) if has_body: |