diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2019-07-14 16:22:12 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2019-07-19 16:35:34 +0200 |
commit | ff2f7b3fdc7c0f220ff20dc19af1c95db4669c9e (patch) | |
tree | 091062184c232d571e53b0474e918540f111bb6a | |
parent | 2514a21f134069702de46367192eb9468bf6f023 (diff) | |
download | poezio-ff2f7b3fdc7c0f220ff20dc19af1c95db4669c9e.tar.gz poezio-ff2f7b3fdc7c0f220ff20dc19af1c95db4669c9e.tar.bz2 poezio-ff2f7b3fdc7c0f220ff20dc19af1c95db4669c9e.tar.xz poezio-ff2f7b3fdc7c0f220ff20dc19af1c95db4669c9e.zip |
poezio/plugin_e2ee: import missing type
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | poezio/plugin_e2ee.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/plugin_e2ee.py b/poezio/plugin_e2ee.py index 357a9678..b6c6d940 100644 --- a/poezio/plugin_e2ee.py +++ b/poezio/plugin_e2ee.py @@ -10,7 +10,7 @@ Interface for E2EE (End-to-end Encryption) plugins. """ -from typing import Callable, Dict, Optional, Union +from typing import Callable, Dict, List, Optional, Union from slixmpp import InvalidJID, JID, Message from slixmpp.xmlstream import StanzaBase |