summaryrefslogtreecommitdiff
path: root/slixmpp/stanza/stream_features.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-07-05 22:29:37 +0200
committermathieui <mathieui@mathieui.net>2021-07-05 22:42:18 +0200
commitaf958fd1fe46d4a3f523ee3f4f103f15430b5fc2 (patch)
tree0b3f93b00544ba7dc6620a7aba271786db67f9fd /slixmpp/stanza/stream_features.py
parent0971bab30ae07d7ea11d9838e4149135e5fcb787 (diff)
downloadslixmpp-af958fd1fe46d4a3f523ee3f4f103f15430b5fc2.tar.gz
slixmpp-af958fd1fe46d4a3f523ee3f4f103f15430b5fc2.tar.bz2
slixmpp-af958fd1fe46d4a3f523ee3f4f103f15430b5fc2.tar.xz
slixmpp-af958fd1fe46d4a3f523ee3f4f103f15430b5fc2.zip
stanza: fix a bunch of type errors
Diffstat (limited to 'slixmpp/stanza/stream_features.py')
-rw-r--r--slixmpp/stanza/stream_features.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/slixmpp/stanza/stream_features.py b/slixmpp/stanza/stream_features.py
index 7362f17b..a3e05a1a 100644
--- a/slixmpp/stanza/stream_features.py
+++ b/slixmpp/stanza/stream_features.py
@@ -3,7 +3,8 @@
# Copyright (C) 2010 Nathanael C. Fritz
# This file is part of Slixmpp.
# See the file LICENSE for copying permission.
-from slixmpp.xmlstream import StanzaBase
+from slixmpp.xmlstream import StanzaBase, ElementBase
+from typing import ClassVar, Dict, Type
class StreamFeatures(StanzaBase):
@@ -15,8 +16,8 @@ class StreamFeatures(StanzaBase):
namespace = 'http://etherx.jabber.org/streams'
interfaces = {'features', 'required', 'optional'}
sub_interfaces = interfaces
- plugin_tag_map = {}
- plugin_attrib_map = {}
+ plugin_attrib_map: ClassVar[Dict[str, Type[ElementBase]]] = {}
+ plugin_tag_map: ClassVar[Dict[str, Type[ElementBase]]] = {}
def setup(self, xml):
StanzaBase.setup(self, xml)