From e118f7913581b5b1fdd88dda73cd77b41e93ffad Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Fri, 15 Nov 2019 09:00:14 -0500 Subject: [PATCH] 'from collections' -> 'from collections.abc' (BZ#1772060) --- src/parted/cachedlist.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/parted/cachedlist.py b/src/parted/cachedlist.py index 5445588f..cddb2982 100644 --- a/src/parted/cachedlist.py +++ b/src/parted/cachedlist.py @@ -1,7 +1,7 @@ # # Python bindings for libparted (built on top of the _ped Python module). # -# Copyright (C) 2009 Red Hat, Inc. +# Copyright (C) 2009-2019 Red Hat, Inc. # # This copyrighted material is made available to anyone wishing to use, # modify, copy, or redistribute it subject to the terms and conditions of @@ -18,9 +18,10 @@ # Red Hat, Inc. # # Red Hat Author(s): Chris Lumens +# David Cantrell # -from collections import Sequence +from collections.abc import Sequence class CachedList(Sequence): """CachedList()