Disable a pylint error on a line (due to __getattr__ override)
This commit is contained in:
parent
9e390085a1
commit
abbb6a714e
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue