summaryrefslogtreecommitdiff
path: root/pylint/checkers/imports.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-09-05 15:24:35 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-09-05 15:24:35 +0300
commit4a1c791a46d90d8ef2d74cc8fbd291fc1b52deb6 (patch)
treebab95f38acdbb84c72be5a6f2076c8c3cb3b12e9 /pylint/checkers/imports.py
parentdb048da44f22ae5ce7eba93e0492a69842d2e856 (diff)
downloadpylint-4a1c791a46d90d8ef2d74cc8fbd291fc1b52deb6.tar.gz
Bring logilab-common's ureports into pylint.reporters.
With this change, we moved away from depending on logilab-common, having in Pylint all the components that were used from logilab-common. The API should be considered an implementation detail and can change at some point in the future. Closes issue #621.
Diffstat (limited to 'pylint/checkers/imports.py')
-rw-r--r--pylint/checkers/imports.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py
index c1688df..2992991 100644
--- a/pylint/checkers/imports.py
+++ b/pylint/checkers/imports.py
@@ -20,8 +20,6 @@ from collections import defaultdict
import six
-from logilab.common.ureports import VerbatimText, Paragraph
-
import astroid
from astroid import are_exclusive
from astroid.modutils import get_module_part, is_standard_module
@@ -31,6 +29,7 @@ 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
+from pylint.reporters.ureports.nodes import VerbatimText, Paragraph
def _get_import_name(importnode, modname):