diff options
author | mathieui <mathieui@mathieui.net> | 2019-12-28 16:47:18 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2019-12-28 16:47:18 +0100 |
commit | abbb6a714ef425351c884ae4cc48b7353324e971 (patch) | |
tree | 9f9ac4e7b0cdedca45ec24fa5e12981f9d41a78d | |
parent | 9e390085a163c3c053aa5b572537172344619226 (diff) | |
download | poezio-abbb6a714ef425351c884ae4cc48b7353324e971.tar.gz poezio-abbb6a714ef425351c884ae4cc48b7353324e971.tar.bz2 poezio-abbb6a714ef425351c884ae4cc48b7353324e971.tar.xz poezio-abbb6a714ef425351c884ae4cc48b7353324e971.zip |
Disable a pylint error on a line (due to __getattr__ override)
-rw-r--r-- | poezio/plugin_e2ee.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |