Fix missing typing import
This commit is contained in:
parent
2ba504ae9a
commit
c0b9211941
1 changed files with 14 additions and 2 deletions
|
@ -10,11 +10,23 @@
|
|||
Interface for E2EE (End-to-end Encryption) plugins.
|
||||
"""
|
||||
|
||||
from typing import Callable, Dict, List, Optional, Union
|
||||
from typing import (
|
||||
Callable,
|
||||
Dict,
|
||||
List,
|
||||
Optional,
|
||||
Union,
|
||||
Tuple,
|
||||
)
|
||||
|
||||
from slixmpp import InvalidJID, JID, Message
|
||||
from slixmpp.xmlstream import StanzaBase
|
||||
from poezio.tabs import ConversationTab, DynamicConversationTab, PrivateTab, MucTab
|
||||
from poezio.tabs import (
|
||||
ConversationTab,
|
||||
DynamicConversationTab,
|
||||
PrivateTab,
|
||||
MucTab,
|
||||
)
|
||||
from poezio.plugin import BasePlugin
|
||||
|
||||
import logging
|
||||
|
|
Loading…
Reference in a new issue