summaryrefslogtreecommitdiff
path: root/pylint/lint
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-12-27 00:04:56 +0100
committerGitHub <noreply@github.com>2022-12-27 00:04:56 +0100
commitdbb12524d75b7bb79215e9c3b6c20d15e9a7a7d6 (patch)
tree2481d32fe51765b1bbd6f126e38493159a234b5b /pylint/lint
parentcf5ea8a32bcdac0bd889f973272c59599b40af95 (diff)
downloadpylint-git-dbb12524d75b7bb79215e9c3b6c20d15e9a7a7d6.tar.gz
[pre-commit] Upgrade to black 23.1a1 with 2023's formatting (#7965)
Diffstat (limited to 'pylint/lint')
-rw-r--r--pylint/lint/message_state_handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/lint/message_state_handler.py b/pylint/lint/message_state_handler.py
index 7c81c2c86..ddeeaa7bc 100644
--- a/pylint/lint/message_state_handler.py
+++ b/pylint/lint/message_state_handler.py
@@ -347,7 +347,7 @@ class _MessageStateHandler:
prev_line = None
saw_newline = True
seen_newline = True
- for (tok_type, content, start, _, _) in tokens:
+ for tok_type, content, start, _, _ in tokens:
if prev_line and prev_line != start[0]:
saw_newline = seen_newline
seen_newline = False