summaryrefslogtreecommitdiff
path: root/tests/test_modutils.py
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2023-05-12 08:10:44 -0400
committerGitHub <noreply@github.com>2023-05-12 14:10:44 +0200
commite1b577ab43a45e7ca0398cd73833a00539d74f18 (patch)
tree16081152dce41ef8b2acfe7f932be6730234197d /tests/test_modutils.py
parent2cd9e90e80a1eb3318e4351ea3b8b3e8c83c235b (diff)
downloadastroid-git-e1b577ab43a45e7ca0398cd73833a00539d74f18.tar.gz
Remove pylint disables and resolves TODO in pylintrc (#2175)
Diffstat (limited to 'tests/test_modutils.py')
-rw-r--r--tests/test_modutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_modutils.py b/tests/test_modutils.py
index 9dcdc811..34f7132f 100644
--- a/tests/test_modutils.py
+++ b/tests/test_modutils.py
@@ -26,7 +26,7 @@ from astroid.interpreter._import import spec
from . import resources
try:
- import urllib3 # type: ignore[import] # pylint: disable=unused-import
+ import urllib3 # type: ignore[import]
HAS_URLLIB3_V1 = urllib3.__version__.startswith("1")
except ImportError: