summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-10-30 14:53:04 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-10-30 14:53:04 +0200
commit6a4ef7618a5a3129ccd9de5676709a13c10c7ac8 (patch)
treece0f00fe04294f7994f433fc7d9d3565c64a1d13
parent247dc3c46a24920b40afd1272671a69287e27b1a (diff)
downloadpylint-6a4ef7618a5a3129ccd9de5676709a13c10c7ac8.tar.gz
Remove unused import.
-rw-r--r--pylint/checkers/typecheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py
index 046c3b9..a37a442 100644
--- a/pylint/checkers/typecheck.py
+++ b/pylint/checkers/typecheck.py
@@ -35,7 +35,7 @@ from pylint.interfaces import IAstroidChecker, INFERENCE, INFERENCE_FAILURE
from pylint.checkers import BaseChecker
from pylint.checkers.utils import (
is_super, check_messages, decorated_with_property,
- decorated_with, node_ignores_exception, class_is_abstract,
+ decorated_with, node_ignores_exception,
is_iterable, is_mapping, supports_membership_test,
is_comprehension, is_inside_abstract_class)
from pylint import utils