Skip to content

Commit cab818f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 48eebfb commit cab818f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pylint/checkers/variables.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ def _assigned_locally(name_node: nodes.Name) -> bool:
305305

306306
def _is_before(node: nodes.NodeNG, reference_node: nodes.NodeNG) -> bool:
307307
"""
308-
Returns True if node appears before reference_node in the source code, False otherwise.
308+
Returns True if node appears before reference_node in the source code, False
309+
otherwise.
309310
"""
310311
if node.lineno < reference_node.lineno:
311312
return True

0 commit comments

Comments
 (0)