commit: 5b8ae94c1bf5f9d3bd7e7970f9cdb0eb1f11a078
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 10 13:28:45 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 10 15:12:39 2023 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=5b8ae94c
*/*: run Black again (post-pyupgrade)
Signed-off-by: Sam James <sam <AT> gentoo.org>
lib/_emerge/actions.py | 4 +---
lib/_emerge/depgraph.py | 4 +---
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/lib/_emerge/actions.py b/lib/_emerge/actions.py
index ba6d99d25..874c0312c 100644
--- a/lib/_emerge/actions.py
+++ b/lib/_emerge/actions.py
@@ -1643,9 +1643,7 @@ def _calc_depclean(settings, trees, ldpath_mtimes,
myopts, action, args_set, spi
if debug:
writemsg_level(
- "Candidates: [{}]\n".format(
- ", ".join(f"'{x}'" for x in atoms)
- ),
+ "Candidates: [{}]\n".format(", ".join(f"'{x}'" for x
in atoms)),
noiselevel=-1,
level=logging.DEBUG,
)
diff --git a/lib/_emerge/depgraph.py b/lib/_emerge/depgraph.py
index 76d0950ae..a88c7a1fa 100644
--- a/lib/_emerge/depgraph.py
+++ b/lib/_emerge/depgraph.py
@@ -2037,9 +2037,7 @@ class depgraph:
f" package(s) to mask: {str(to_be_masked)}",
f" slot: {slot_atom}",
" parents: {}".format(
- ", ".join(
- f"({ppkg}, '{atom}')" for ppkg, atom in all_parents
- )
+ ", ".join(f"({ppkg}, '{atom}')" for ppkg, atom in
all_parents)
),
"",
]