From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 609C015800F for ; Tue, 10 Jan 2023 15:12:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 870D3E0809; Tue, 10 Jan 2023 15:12:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 732E5E0809 for ; Tue, 10 Jan 2023 15:12:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A230E335DB4 for ; Tue, 10 Jan 2023 15:12:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11D66824 for ; Tue, 10 Jan 2023 15:12:44 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1673363559.5b8ae94c1bf5f9d3bd7e7970f9cdb0eb1f11a078.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: lib/_emerge/actions.py lib/_emerge/depgraph.py X-VCS-Directories: lib/_emerge/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5b8ae94c1bf5f9d3bd7e7970f9cdb0eb1f11a078 X-VCS-Branch: master Date: Tue, 10 Jan 2023 15:12:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b2312d34-0531-48cc-b18d-811827c31d05 X-Archives-Hash: a1d230375123fff407647f9bc7f443eb commit: 5b8ae94c1bf5f9d3bd7e7970f9cdb0eb1f11a078 Author: Sam James gentoo org> AuthorDate: Tue Jan 10 13:28:45 2023 +0000 Commit: Sam James gentoo 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 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) ), "", ]