diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2019-08-25 00:46:10 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2019-12-27 18:58:48 +0100 |
commit | cd3f2a197b07016165899506dfc8b00a859ce24b (patch) | |
tree | e61563fe2cd293fc7f4df369cca338290944869a | |
parent | c85c8f6c7729b94d06a15614240e848592c60ef0 (diff) | |
download | poezio-cd3f2a197b07016165899506dfc8b00a859ce24b.tar.gz poezio-cd3f2a197b07016165899506dfc8b00a859ce24b.tar.bz2 poezio-cd3f2a197b07016165899506dfc8b00a859ce24b.tar.xz poezio-cd3f2a197b07016165899506dfc8b00a859ce24b.zip |
omemo: Remove unused variable in encrypt method
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | plugins/omemo_plugin.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/omemo_plugin.py b/plugins/omemo_plugin.py index 6a2f0640..b8ec293e 100644 --- a/plugins/omemo_plugin.py +++ b/plugins/omemo_plugin.py @@ -117,7 +117,6 @@ class Plugin(E2EEPlugin): async def encrypt(self, message: Message, _tab) -> None: mto = message['to'] - mtype = message['type'] body = message['body'] expect_problems = {} # type: Optional[Dict[JID, List[int]]] |