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 22E5515808B for ; Sat, 17 Feb 2024 00:01:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54689E29D2; Sat, 17 Feb 2024 00:01:47 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 342CCE29D2 for ; Sat, 17 Feb 2024 00:01:47 +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 20D87340DE6 for ; Sat, 17 Feb 2024 00:01:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EEC51132 for ; Sat, 17 Feb 2024 00:01: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: <1708128100.678a1904da6aebc4fa7fd09e8f800e5af9101a61.sam@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/dependencies.py X-VCS-Directories: pym/gentoolkit/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 678a1904da6aebc4fa7fd09e8f800e5af9101a61 X-VCS-Branch: master Date: Sat, 17 Feb 2024 00:01: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: 97fdaa62-6f4f-4472-9d8f-6ce2d816a0ef X-Archives-Hash: 548485d94cf6631523c9e76cfbdaaeee commit: 678a1904da6aebc4fa7fd09e8f800e5af9101a61 Author: Sam James gentoo org> AuthorDate: Sat Feb 17 00:01:12 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 17 00:01:40 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=678a1904 gentoolkit: fix flake8 lint error (F401, unused import) pym/gentoolkit/dependencies.py:24:1: F401 'gentoolkit.helpers.uniqify' imported but unused Fixes: c0300517671076db453204c796637e206bf977e5 Signed-off-by: Sam James gentoo.org> pym/gentoolkit/dependencies.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pym/gentoolkit/dependencies.py b/pym/gentoolkit/dependencies.py index 3bbc757..f296e27 100644 --- a/pym/gentoolkit/dependencies.py +++ b/pym/gentoolkit/dependencies.py @@ -21,7 +21,6 @@ from portage.dep import paren_reduce from gentoolkit import errors from gentoolkit.atom import Atom -from gentoolkit.helpers import uniqify from gentoolkit.query import Query # =======