From abbb6a714ef425351c884ae4cc48b7353324e971 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 28 Dec 2019 16:47:18 +0100 Subject: Disable a pylint error on a line (due to __getattr__ override) --- poezio/plugin_e2ee.py | 1 + 1 file changed, 1 insertion(+) (limited to 'poezio') diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py index 410fc82e..d4b26d46 100644 --- a/poezio/plugin_e2ee.py +++ b/poezio/plugin_e2ee.py @@ -325,6 +325,7 @@ class E2EEPlugin(BasePlugin): Wrapper around _encrypt() to handle errors and display the message after encryption. """ try: + # pylint: disable=unexpected-keyword-arg result = await self._encrypt(stanza, passthrough=True) except NothingToEncrypt: return stanza -- cgit v1.2.3