diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-08-20 23:31:13 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-08-20 23:31:13 +0200 |
commit | e83b482989530857339d215a8d422b62f123fcb4 (patch) | |
tree | 6cb684582ab58469fa20b31b0deb9d5247f0b500 /astroid/nodes/node_ng.py | |
parent | 4ef13b03fae72f0ada66daf0e1098d2dd363b141 (diff) | |
download | astroid-git-upgrade-to-pylint-2.10.tar.gz |
Upgrade pylint checks to 2.10.0upgrade-to-pylint-2.10
Diffstat (limited to 'astroid/nodes/node_ng.py')
-rw-r--r-- | astroid/nodes/node_ng.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/nodes/node_ng.py b/astroid/nodes/node_ng.py index 761b2800..19420c7f 100644 --- a/astroid/nodes/node_ng.py +++ b/astroid/nodes/node_ng.py @@ -355,7 +355,7 @@ class NodeNG: last_child = self.last_child() if last_child is None: return self.fromlineno - return last_child.tolineno # pylint: disable=no-member + return last_child.tolineno def _fixed_source_line(self) -> Optional[int]: """Attempt to find the line that this node appears on. |