Gentoo Archives: gentoo-portage-dev

From: Aaron Bauman <bman@g.o>
To: gentoo-portage-dev@l.g.o
Cc: Aaron Bauman <bman@g.o>
Subject: [gentoo-portage-dev] [PATCH 14/18] lib/portage/tests/resolver/ResolverPlayground.py: drop unused-import
Date: Mon, 03 Aug 2020 20:21:19
Message-Id: 20200803202033.1585074-14-bman@gentoo.org
In Reply to: [gentoo-portage-dev] [PATCH 01/18] lib/_emerge/actions.py: drop unused-import by Aaron Bauman
1 * Drop unused-import
2 * Slight refactor on imports
3
4 Signed-off-by: Aaron Bauman <bman@g.o>
5 ---
6 lib/portage/tests/resolver/ResolverPlayground.py | 6 +++---
7 1 file changed, 3 insertions(+), 3 deletions(-)
8
9 diff --git a/lib/portage/tests/resolver/ResolverPlayground.py b/lib/portage/tests/resolver/ResolverPlayground.py
10 index b15cc7f36..1e382002a 100644
11 --- a/lib/portage/tests/resolver/ResolverPlayground.py
12 +++ b/lib/portage/tests/resolver/ResolverPlayground.py
13 @@ -2,14 +2,14 @@
14 # Distributed under the terms of the GNU General Public License v2
15
16 import bz2
17 -from itertools import permutations
18 import fnmatch
19 import tempfile
20 import portage
21 +
22 +from itertools import permutations
23 from portage import os
24 from portage import shutil
25 -from portage.const import (GLOBAL_CONFIG_PATH, PORTAGE_BASE_PATH,
26 - USER_CONFIG_PATH)
27 +from portage.const import (GLOBAL_CONFIG_PATH, USER_CONFIG_PATH)
28 from portage.process import find_binary
29 from portage.dep import Atom, _repo_separator
30 from portage.package.ebuild.config import config
31 --
32 2.28.0