summaryrefslogtreecommitdiff
path: root/pylint/checkers/typecheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/typecheck.py')
-rw-r--r--pylint/checkers/typecheck.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py
index 865508e..66ac05b 100644
--- a/pylint/checkers/typecheck.py
+++ b/pylint/checkers/typecheck.py
@@ -25,10 +25,10 @@ import sys
import astroid
import astroid.context
import astroid.arguments
-from astroid import bases
from astroid import exceptions
from astroid import objects
from astroid import helpers
+from astroid import node_classes
import six
from pylint.interfaces import IAstroidChecker, INFERENCE, INFERENCE_FAILURE
@@ -52,7 +52,7 @@ def _unflatten(iterable):
not isinstance(elem, six.string_types)):
for subelem in _unflatten(elem):
yield subelem
- elif isinstance(elem, bases.NodeNG):
+ elif isinstance(elem, node_classes.NodeNG):
yield elem