omemo: add missing typing import

This commit is contained in:
mathieui 2019-08-23 23:25:33 +02:00 committed by Maxime “pep” Buquet
parent 97d29bc1cd
commit e94ee52c10

View file

@ -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