summaryrefslogtreecommitdiff
path: root/tests/test_scoped_nodes.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2023-04-03 19:51:18 +0200
committerGitHub <noreply@github.com>2023-04-03 19:51:18 +0200
commitc46d7e0f56105e8db67bf54888531f32120a070c (patch)
tree3098a8e0a8912a88742db9c446f1482c04af1170 /tests/test_scoped_nodes.py
parent779c3e0eecab5413f92a4022b7c98dd6eefbef9f (diff)
downloadastroid-git-c46d7e0f56105e8db67bf54888531f32120a070c.tar.gz
Don't add typing stubs for packages that we only use in tests (#2080)
Diffstat (limited to 'tests/test_scoped_nodes.py')
-rw-r--r--tests/test_scoped_nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_scoped_nodes.py b/tests/test_scoped_nodes.py
index 15906f58..63fe0af7 100644
--- a/tests/test_scoped_nodes.py
+++ b/tests/test_scoped_nodes.py
@@ -47,7 +47,7 @@ from astroid.nodes.scoped_nodes.scoped_nodes import _is_metaclass
from . import resources
try:
- import six # pylint: disable=unused-import
+ import six # type: ignore[import] # pylint: disable=unused-import
HAS_SIX = True
except ImportError: