diff options
| author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-04-24 09:43:47 +0200 |
|---|---|---|
| committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-04-24 11:35:53 +0200 |
| commit | fee33f80b362989bff63899218367e029b5528fa (patch) | |
| tree | a45a321b7be146d0291773d817e4e5af900ad37f | |
| parent | 7f8fe962b5c890f42964ae5d5660eb757d3bb1e6 (diff) | |
| download | astroid-git-fee33f80b362989bff63899218367e029b5528fa.tar.gz | |
Fix Useless suppression of 'unused-import'
| -rw-r--r-- | astroid/nodes.py | 2 |
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 ( |
