Merge branch 'collections-abc-warning' into 'master'

Collections abc warning

See merge request poezio/slixmpp!139
This commit is contained in:
mathieui 2021-02-22 18:18:33 +01:00
commit 7381460556

View file

@ -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 = []