aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVirgil Dupras <hsoft@hardcoded.net>2018-08-14 11:32:05 -0400
committerVirgil Dupras <hsoft@hardcoded.net>2018-08-14 11:32:05 -0400
commit8d0df18f0275376a5c7e6c133abaa99e7c05b737 (patch)
tree21a4c9131d67d3b180a165416fdbd2928d60a805 /pym/gentoolkit/helpers.py
parentAdd (and fix) flake8 checks in tox (diff)
downloadgentoolkit-8d0df18f0275376a5c7e6c133abaa99e7c05b737.tar.gz
gentoolkit-8d0df18f0275376a5c7e6c133abaa99e7c05b737.tar.bz2
gentoolkit-8d0df18f0275376a5c7e6c133abaa99e7c05b737.zip
Remove pylint
As of now, pylint checks return a metric ton of warnings, which tells us that it hasn't been running lately. pylint is replaced by flake8 and its continuous run will enventually be ensured by a CI running tox on this project. The immediate goal, for now, is to have an easy command that checks as much as possible, but that *passes* so that we don't litter the project with more code that decrease quality.
Diffstat (limited to 'pym/gentoolkit/helpers.py')
-rw-r--r--pym/gentoolkit/helpers.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pym/gentoolkit/helpers.py b/pym/gentoolkit/helpers.py
index 8993fed..40235d5 100644
--- a/pym/gentoolkit/helpers.py
+++ b/pym/gentoolkit/helpers.py
@@ -414,8 +414,6 @@ def get_cpvs(predicate=None, include_installed=True):
yield cpv
-# pylint thinks this is a global variable
-# pylint: disable-msg=C0103
get_uninstalled_cpvs = partial(get_cpvs, include_installed=False)