diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-09 11:00:07 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-09 11:00:07 +0100 |
commit | cb2e51b161099e5890a4e438605b38203d9fecad (patch) | |
tree | d3e03113bd3e0c5849c23388c54a7beed89d013e /checkers | |
parent | be454880a7685ea76fc97de87ca606b4380793b2 (diff) | |
download | pylint-git-cb2e51b161099e5890a4e438605b38203d9fecad.tar.gz |
cleanup: remove unused needs_checkers attribut and sort_checkers method
what was expected to be accomplished needs_checkers will be done
easier with a decorator
Diffstat (limited to 'checkers')
-rw-r--r-- | checkers/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/checkers/__init__.py b/checkers/__init__.py index 40433cf8b..a8d2bf164 100644 --- a/checkers/__init__.py +++ b/checkers/__init__.py @@ -70,8 +70,6 @@ class BaseChecker(OptionsProviderMixIn, ASTWalker): level = 1 # ordered list of options to control the ckecker behaviour options = () - # checker that should be run before this one - needs_checkers = () # messages issued by this checker msgs = {} # reports issued by this checker |