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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0ABD158012 for ; Tue, 21 Sep 2021 21:01:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AC75E07EF; Tue, 21 Sep 2021 21:01:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0094FE07EF for ; Tue, 21 Sep 2021 21:01:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C16C7342FED for ; Tue, 21 Sep 2021 21:01:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F010104 for ; Tue, 21 Sep 2021 21:01:47 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1632258018.813c8e3a4853bedc50d7d4176282c5f0bacde31e.mattst88@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/helpers.py X-VCS-Directories: pym/gentoolkit/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 813c8e3a4853bedc50d7d4176282c5f0bacde31e X-VCS-Branch: master Date: Tue, 21 Sep 2021 21:01:47 +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: 344fd48e-d033-41ef-943c-af364909d7ec X-Archives-Hash: 064d54fa7ec86f061940e4251f1a1796 commit: 813c8e3a4853bedc50d7d4176282c5f0bacde31e Author: Wolfgang E. Sanyer gmail com> AuthorDate: Tue Sep 21 20:50:35 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Sep 21 21:00:18 2021 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=813c8e3a Fix flake F401 'imported but unused' error Closes: https://github.com/gentoo/gentoolkit/pull/17 Signed-off-by: Wolfgang E. Sanyer gmail.com> Signed-off-by: Matt Turner gentoo.org> pym/gentoolkit/helpers.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pym/gentoolkit/helpers.py b/pym/gentoolkit/helpers.py index 15d959d..72c5d13 100644 --- a/pym/gentoolkit/helpers.py +++ b/pym/gentoolkit/helpers.py @@ -32,9 +32,6 @@ from portage import _encodings, _unicode_encode from gentoolkit import pprinter as pp from gentoolkit import errors -from gentoolkit.atom import Atom -from gentoolkit.cpv import CPV -from gentoolkit.versionmatch import VersionMatch # This has to be imported below to stop circular import. # from gentoolkit.package import Package