Fix for Python 3.10+
This commit is contained in:
parent
24375f3c47
commit
c4cbb59a44
2
slixmpp/thirdparty/orderedset.py
vendored
2
slixmpp/thirdparty/orderedset.py
vendored
@ -22,7 +22,7 @@
|
||||
|
||||
import collections
|
||||
|
||||
class OrderedSet(collections.MutableSet):
|
||||
class OrderedSet(collections.abc.MutableSet):
|
||||
|
||||
def __init__(self, iterable=None):
|
||||
self.end = end = []
|
||||
|
Loading…
Reference in New Issue
Block a user