Skip to content

Commit 791ee52

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/test/update_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _iter_fixes(
7575
# using continuation backslashes
7676
for i, (severity, msg) in enumerate(reports_on_this_line):
7777
out_l = source_line if i == 0 else " " * len(source_line)
78-
is_last = (i == len(reports_on_this_line) - 1)
78+
is_last = i == len(reports_on_this_line) - 1
7979
severity_char = severity[0].upper()
8080
continuation = "" if is_last else " \\"
8181
fix_lines.append(f"{out_l}{indent}# {severity_char}: {msg}{continuation}")

0 commit comments

Comments
 (0)