summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-24 09:43:47 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-24 11:35:53 +0200
commitfee33f80b362989bff63899218367e029b5528fa (patch)
treea45a321b7be146d0291773d817e4e5af900ad37f
parent7f8fe962b5c890f42964ae5d5660eb757d3bb1e6 (diff)
downloadastroid-git-fee33f80b362989bff63899218367e029b5528fa.tar.gz
Fix Useless suppression of 'unused-import'
-rw-r--r--astroid/nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/nodes.py b/astroid/nodes.py
index 405ef7fc..310b594e 100644
--- a/astroid/nodes.py
+++ b/astroid/nodes.py
@@ -18,7 +18,7 @@
All nodes inherit from :class:`~astroid.node_classes.NodeNG`.
"""
-# pylint: disable=unused-import,redefined-builtin
+# pylint: disable=redefined-builtin
# Nodes not present in the builtin ast module: DictUnpack, Unknown, and EvaluatedObject.
from astroid.node_classes import (