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