diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-03-22 10:33:23 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-03-22 10:33:23 +0100 |
commit | 64de14bf5cb1f98146b5af0feb67cd03a7a9cf9e (patch) | |
tree | ab7b5b32e03c20b2c576c85ef86fdc71b127f202 /checkers/variables.py | |
parent | 9719184f652c666284785d33767fbcfd1d5fb3ea (diff) | |
download | pylint-64de14bf5cb1f98146b5af0feb67cd03a7a9cf9e.tar.gz |
modify astng imports after astng 'rebuild' refactoring
Diffstat (limited to 'checkers/variables.py')
-rw-r--r-- | checkers/variables.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/checkers/variables.py b/checkers/variables.py index e7b7fd5..0a57f70 100644 --- a/checkers/variables.py +++ b/checkers/variables.py @@ -20,8 +20,7 @@ from copy import copy from logilab.common.compat import enumerate from logilab import astng -from logilab.astng.lookup import builtin_lookup -from logilab.astng.infutils import are_exclusive +from logilab.astng import are_exclusive, builtin_lookup from pylint.interfaces import IASTNGChecker from pylint.checkers import BaseChecker |