Skip to content

Commit

Permalink
'from collections' -> 'from collections.abc' (BZ#1772060)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcantrell committed Nov 15, 2019
1 parent a35c00d commit e118f79
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/parted/cachedlist.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -18,9 +18,10 @@
# Red Hat, Inc.
#
# Red Hat Author(s): Chris Lumens <[email protected]>
# David Cantrell <[email protected]>
#

from collections import Sequence
from collections.abc import Sequence

class CachedList(Sequence):
"""CachedList()
Expand Down

0 comments on commit e118f79

Please sign in to comment.