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 96E93158095 for ; Sun, 10 Jul 2022 07:53:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5947E0B1D; Sun, 10 Jul 2022 07:53:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 BA6E1E0B1D for ; Sun, 10 Jul 2022 07:53:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C4244340DB0 for ; Sun, 10 Jul 2022 07:53:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17CAB500 for ; Sun, 10 Jul 2022 07:53:35 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1657439603.6fcf53bcf3579e4439623315875a4303af9af41f.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/package.py X-VCS-Directories: pym/gentoolkit/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 6fcf53bcf3579e4439623315875a4303af9af41f X-VCS-Branch: master Date: Sun, 10 Jul 2022 07:53:35 +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: 64af3486-2fcb-4972-aa78-647a0bd7afbc X-Archives-Hash: 8facdb712ed25183ed25b22eedb3d2d9 commit: 6fcf53bcf3579e4439623315875a4303af9af41f Author: Brian Dolbec gentoo org> AuthorDate: Sun Jul 10 07:47:28 2022 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun Jul 10 07:53:23 2022 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=6fcf53bc package.py: code cleanup via black Signed-off-by: Brian Dolbec gentoo.org> pym/gentoolkit/package.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pym/gentoolkit/package.py b/pym/gentoolkit/package.py index 51bb329..612fbd3 100644 --- a/pym/gentoolkit/package.py +++ b/pym/gentoolkit/package.py @@ -448,7 +448,9 @@ class Package(CPV): @rtype: list """ - return portage.db[portage.root]["porttree"].dbapi.aux_get(self.cpv, ["DESCRIPTION"]) + return portage.db[portage.root]["porttree"].dbapi.aux_get( + self.cpv, ["DESCRIPTION"] + ) class PackageFormatter: