From af958fd1fe46d4a3f523ee3f4f103f15430b5fc2 Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 5 Jul 2021 22:29:37 +0200 Subject: stanza: fix a bunch of type errors --- slixmpp/stanza/stream_features.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'slixmpp/stanza/stream_features.py') 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) -- cgit v1.2.3