diff options
author | yushao2 <36848472+yushao2@users.noreply.github.com> | 2021-05-24 04:48:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-23 22:48:39 +0200 |
commit | 5ebbc30afbaa1a3c1e04fc86c3525edf9f579640 (patch) | |
tree | 55fade0543cb481b0c1f2caec8b3209688352457 /tests/extensions | |
parent | b199fa6993211c89b391672b79477add64f324c5 (diff) | |
download | pylint-git-5ebbc30afbaa1a3c1e04fc86c3525edf9f579640.tar.gz |
Implemented new check consider-using-from-import (#4491)
Diffstat (limited to 'tests/extensions')
-rw-r--r-- | tests/extensions/test_empty_comment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extensions/test_empty_comment.py b/tests/extensions/test_empty_comment.py index f4e2ed947..b53f31d2f 100644 --- a/tests/extensions/test_empty_comment.py +++ b/tests/extensions/test_empty_comment.py @@ -2,7 +2,7 @@ from pathlib import Path import pytest -import pylint.extensions.empty_comment as empty_comment +from pylint.extensions import empty_comment @pytest.fixture(scope="module") |