summaryrefslogtreecommitdiff
path: root/slixmpp/xmlstream/handler/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'slixmpp/xmlstream/handler/base.py')
-rw-r--r--slixmpp/xmlstream/handler/base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/slixmpp/xmlstream/handler/base.py b/slixmpp/xmlstream/handler/base.py
index e1edb249..0bae5674 100644
--- a/slixmpp/xmlstream/handler/base.py
+++ b/slixmpp/xmlstream/handler/base.py
@@ -8,8 +8,9 @@ from __future__ import annotations
import weakref
from weakref import ReferenceType
-from typing import Optional, TYPE_CHECKING
+from typing import Optional, TYPE_CHECKING, Union
from slixmpp.xmlstream.matcher.base import MatcherBase
+from xml.etree.ElementTree import Element
if TYPE_CHECKING:
from slixmpp.xmlstream import XMLStream, StanzaBase