diff options
author | mathieui <mathieui@mathieui.net> | 2019-08-23 23:25:33 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2019-12-27 18:58:47 +0100 |
commit | e94ee52c107ed42478f086f40dd2f7f99e4b2f22 (patch) | |
tree | 2424491a7efc7f8397415febb83b3956523af92e | |
parent | 97d29bc1cdb66f3f3c8f0a66acb124ee62e190b0 (diff) | |
download | poezio-e94ee52c107ed42478f086f40dd2f7f99e4b2f22.tar.gz poezio-e94ee52c107ed42478f086f40dd2f7f99e4b2f22.tar.bz2 poezio-e94ee52c107ed42478f086f40dd2f7f99e4b2f22.tar.xz poezio-e94ee52c107ed42478f086f40dd2f7f99e4b2f22.zip |
omemo: add missing typing import
-rw-r--r-- | poezio/plugin_e2ee.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py index b18aae3b..9c0fa39c 100644 --- a/poezio/plugin_e2ee.py +++ b/poezio/plugin_e2ee.py @@ -10,14 +10,7 @@ Interface for E2EE (End-to-end Encryption) plugins. """ -from typing import ( - Callable, - Dict, - List, - Optional, - Union, - Tuple, -) +from typing import Callable, Dict, List, Optional, Union, Tuple from slixmpp import InvalidJID, JID, Message from slixmpp.xmlstream import StanzaBase |