commit: 813c8e3a4853bedc50d7d4176282c5f0bacde31e Author: Wolfgang E. Sanyer <WolfgangESanyer <AT> gmail <DOT> com> AuthorDate: Tue Sep 21 20:50:35 2021 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> 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 <WolfgangESanyer <AT> gmail.com> Signed-off-by: Matt Turner <mattst88 <AT> 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
