summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-22 18:18:33 +0100
committermathieui <mathieui@mathieui.net>2021-02-22 18:18:33 +0100
commit73814605565df02ae534b5d0b57868b6cafa58f7 (patch)
tree4429b5cd6ae393eee5a5e4481bd4c45766b74a96
parent17a663b0fd0cecb03a2e0de1cd5b34239949c0e6 (diff)
parent8b7648502b003d433a08333b041baf1d4960c9d4 (diff)
downloadslixmpp-73814605565df02ae534b5d0b57868b6cafa58f7.tar.gz
slixmpp-73814605565df02ae534b5d0b57868b6cafa58f7.tar.bz2
slixmpp-73814605565df02ae534b5d0b57868b6cafa58f7.tar.xz
slixmpp-73814605565df02ae534b5d0b57868b6cafa58f7.zip
Merge branch 'collections-abc-warning' into 'master'
Collections abc warning See merge request poezio/slixmpp!139
-rw-r--r--slixmpp/thirdparty/orderedset.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/slixmpp/thirdparty/orderedset.py b/slixmpp/thirdparty/orderedset.py
index f6642db3..43023af4 100644
--- a/slixmpp/thirdparty/orderedset.py
+++ b/slixmpp/thirdparty/orderedset.py
@@ -20,9 +20,9 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
-import collections
+from collections.abc import MutableSet
-class OrderedSet(collections.MutableSet):
+class OrderedSet(MutableSet):
def __init__(self, iterable=None):
self.end = end = []