summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0071/stanza.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2020-12-06 16:34:52 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2020-12-06 17:00:47 +0100
commitcd4c9f82fc8d17726baa4b4a69c54151fb181f40 (patch)
treed47b5d13b0d79f6526661bf23caebbef9c57d136 /slixmpp/plugins/xep_0071/stanza.py
parent05749c49690c00f2b1794212b2fb9281b6956a89 (diff)
downloadslixmpp-cd4c9f82fc8d17726baa4b4a69c54151fb181f40.tar.gz
slixmpp-cd4c9f82fc8d17726baa4b4a69c54151fb181f40.tar.bz2
slixmpp-cd4c9f82fc8d17726baa4b4a69c54151fb181f40.tar.xz
slixmpp-cd4c9f82fc8d17726baa4b4a69c54151fb181f40.zip
Remove OrderedDict usage
We now support only Python 3.7+, this means we can rely on dict being ordered by order of insertion, and thus no need to use OrderedDict from collections.
Diffstat (limited to 'slixmpp/plugins/xep_0071/stanza.py')
-rw-r--r--slixmpp/plugins/xep_0071/stanza.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/slixmpp/plugins/xep_0071/stanza.py b/slixmpp/plugins/xep_0071/stanza.py
index 4c3380c4..47951976 100644
--- a/slixmpp/plugins/xep_0071/stanza.py
+++ b/slixmpp/plugins/xep_0071/stanza.py
@@ -8,7 +8,6 @@
from slixmpp.stanza import Message
from slixmpp.util import unicode
-from collections import OrderedDict
from slixmpp.xmlstream import ElementBase, ET, register_stanza_plugin, tostring
@@ -50,7 +49,7 @@ class XHTML_IM(ElementBase):
bodies = self.xml.findall('{%s}body' % XHTML_NS)
if lang == '*':
- result = OrderedDict()
+ result = {}
for body in bodies:
body_lang = body.attrib.get('{%s}lang' % self.xml_ns, '')
body_result = []