From 1eb1396d485f14b716a6977da47e18aad6ab89ed Mon Sep 17 00:00:00 2001 From: David Shea Date: Thu, 4 Feb 2016 11:30:18 -0500 Subject: [PATCH] Remove the removal of the eintr checker, which has been removed --- tests/pylint/runpylint.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/pylint/runpylint.py b/tests/pylint/runpylint.py index b64d09d5..ed6a7a07 100755 --- a/tests/pylint/runpylint.py +++ b/tests/pylint/runpylint.py @@ -17,9 +17,8 @@ class LoraxLintConfig(PocketLintConfig): @property def pylintPlugins(self): retval = super(LoraxLintConfig, self).pylintPlugins - # Not using threads so we can skip these + # Not using threads so we can skip this retval.remove("pocketlint.checkers.environ") - retval.remove("pocketlint.checkers.eintr") # No markup used retval.remove("pocketlint.checkers.markup") return retval