Remove the removal of the eintr checker, which has been removed

This commit is contained in:
David Shea 2016-02-04 11:30:18 -05:00
parent 9bd762219a
commit 1eb1396d48

View File

@ -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