Skip to content

Commit 6a51383

Browse files
committed
Fix formatting
1 parent d201c13 commit 6a51383

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

Lib/test/test_pyrepl/test_utils.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,19 @@ def test_gen_colors_keyword_highlighting(self):
125125
("import", "keyword"),
126126
],
127127
),
128-
# `case` soft keyword with unary +/- operators (gh-145239)
129128
(
130129
"case +1",
131-
[("case", "soft_keyword"), ("+", "op")],
130+
[
131+
("case", "soft_keyword"),
132+
("+", "op"),
133+
],
132134
),
133135
(
134136
"case -1",
135-
[("case", "soft_keyword"), ("-", "op")],
137+
[
138+
("case", "soft_keyword"),
139+
("-", "op"),
140+
],
136141
),
137142
]
138143
for code, expected_highlights in cases:

0 commit comments

Comments
 (0)