diff options
author | Glenn Matthews <glenn@e-dad.net> | 2016-07-18 15:56:04 -0400 |
---|---|---|
committer | Glenn Matthews <glenn@e-dad.net> | 2016-07-19 13:56:06 -0400 |
commit | 0495355af9b2958e2ecd23311a697a8a7a7cc887 (patch) | |
tree | 7918c02da8ba7547d14cb1a41f54b3864cc89b18 /pylint/checkers/imports.py | |
parent | 47577a4a396a148b92e656110c2bdb18632d44a9 (diff) | |
download | pylint-git-0495355af9b2958e2ecd23311a697a8a7a7cc887.tar.gz |
Move EmptyReport and UnknownMessage to pylint.exceptions
Diffstat (limited to 'pylint/checkers/imports.py')
-rw-r--r-- | pylint/checkers/imports.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py index c0bb38936..6f3e0b7f1 100644 --- a/pylint/checkers/imports.py +++ b/pylint/checkers/imports.py @@ -18,7 +18,8 @@ from astroid.modutils import (get_module_part, is_standard_module) import isort from pylint.interfaces import IAstroidChecker -from pylint.utils import EmptyReport, get_global_option +from pylint.utils import get_global_option +from pylint.exceptions import EmptyReport from pylint.checkers import BaseChecker from pylint.checkers.utils import ( check_messages, |