Update deprecated collections imports

This commit is contained in:
cassidoxa
2023-06-14 16:42:51 -04:00
parent c4e6fbb8cd
commit 07e8577907
5 changed files with 6 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
"""Bag class definitions."""
import heapq
from operator import itemgetter
from collections import Set, MutableSet, Hashable
from collections.abc import Set, MutableSet, Hashable
from . import _compat