diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2022-07-04 12:38:15 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2022-07-04 12:38:15 +0200 |
commit | bb3cedd57a45f5f87217049f07ef4a43b4ba72e5 (patch) | |
tree | cc527e98e1984d5a4ae55b14687b1f207ecf3b50 | |
parent | 98ac3a0aaf9dffb68fceb112cd848a7d7e822c80 (diff) | |
download | poezio-bb3cedd57a45f5f87217049f07ef4a43b4ba72e5.tar.gz poezio-bb3cedd57a45f5f87217049f07ef4a43b4ba72e5.tar.bz2 poezio-bb3cedd57a45f5f87217049f07ef4a43b4ba72e5.tar.xz poezio-bb3cedd57a45f5f87217049f07ef4a43b4ba72e5.zip |
plugin_e2ee: ignore incorrect mypy error
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | poezio/plugin_e2ee.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py index 47dbe6d5..44d13c51 100644 --- a/poezio/plugin_e2ee.py +++ b/poezio/plugin_e2ee.py @@ -491,7 +491,7 @@ class E2EEPlugin(BasePlugin): await func(message, jid, tab, passthrough=True) # type: ignore else: # pylint: disable=unexpected-keyword-arg - func(message, jid, tab) + func(message, jid, tab) # type: ignore log.debug('Decrypted %s message: %r', self.encryption_name, message['body']) return None |