summaryrefslogtreecommitdiff
path: root/pylint/checkers/imports.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2015-07-26 12:28:32 +0200
committerFlorian Bruhin <me@the-compiler.org>2015-07-26 12:28:32 +0200
commit9c36351d97a2cdb63f7e5e6125dd7a1c1d75fff1 (patch)
tree43510a12d20ac11bf03ce7a0b164e26091775d5e /pylint/checkers/imports.py
parent52554bb3e3929516d3849e817cbf862c7d6ac500 (diff)
downloadpylint-9c36351d97a2cdb63f7e5e6125dd7a1c1d75fff1.tar.gz
Get rid of logilab.common.graph.no-logilab-common
Diffstat (limited to 'pylint/checkers/imports.py')
-rw-r--r--pylint/checkers/imports.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py
index b45cabc..dc35d79 100644
--- a/pylint/checkers/imports.py
+++ b/pylint/checkers/imports.py
@@ -20,7 +20,6 @@ from collections import defaultdict
import six
-from logilab.common.graph import get_cycles, DotBackend
from logilab.common.ureports import VerbatimText, Paragraph
import astroid
@@ -31,6 +30,7 @@ from pylint.interfaces import IAstroidChecker
from pylint.utils import EmptyReport, get_global_option
from pylint.checkers import BaseChecker
from pylint.checkers.utils import check_messages, node_ignores_exception
+from pylint.graph import get_cycles, DotBackend
def _get_import_name(importnode, modname):