summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2015-02-26 17:22:02 -0500
committerPavel Roskin <proski@gnu.org>2015-02-26 17:22:02 -0500
commit7db3e4f46e474cdf5ad83b2202fddf9cb790b453 (patch)
treeb52cfb679b98d63c38993b67573704060984deec
parent49c7471952710c5c56a5255654070e33f8cda590 (diff)
downloadpylint-7db3e4f46e474cdf5ad83b2202fddf9cb790b453.tar.gz
Remove Python3Checker constructor, visit_module() does all its job
-rw-r--r--pylint/checkers/python3.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py
index 3ddf495..2682c58 100644
--- a/pylint/checkers/python3.py
+++ b/pylint/checkers/python3.py
@@ -360,11 +360,6 @@ class Python3Checker(checkers.BaseChecker):
'__cmp__',
])
- def __init__(self, *args, **kwargs):
- self._future_division = False
- self._future_absolute_import = False
- super(Python3Checker, self).__init__(*args, **kwargs)
-
def visit_module(self, node): # pylint: disable=unused-argument
"""Clear checker state after previous module."""
self._future_division = False