diff options
author | cpopa <devnull@localhost> | 2014-07-23 12:03:12 +0200 |
---|---|---|
committer | cpopa <devnull@localhost> | 2014-07-23 12:03:12 +0200 |
commit | 228cf2146e6485e34e78b73570ea0a5a5ec05e75 (patch) | |
tree | d7e824b3d08d918df333a3dabe73c5aee98ff0dc /checkers/variables.py | |
parent | 5359ed4f09b8667907280b49c84831a1c1dfe8bf (diff) | |
download | pylint-228cf2146e6485e34e78b73570ea0a5a5ec05e75.tar.gz |
Remove check_messages, so that leave_module can be called if 'undefined-variable' is disabled.
Diffstat (limited to 'checkers/variables.py')
-rw-r--r-- | checkers/variables.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/checkers/variables.py b/checkers/variables.py index 6fba97d..aa63177 100644 --- a/checkers/variables.py +++ b/checkers/variables.py @@ -831,7 +831,6 @@ class VariablesChecker3k(VariablesChecker): # do not check for not used locals here self._to_consume.pop() - @check_messages('undefined-variable') def leave_module(self, node): """ Update consumption analysis variable for metaclasses. |