forked from dcantrell/pyparted
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'from collections' -> 'from collections.abc' (BZ#1772060)
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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() | ||
|