Skip to content

Commit 9ca630c

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mypy/checkpattern.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,9 @@ def visit_sequence_pattern(self, o: SequencePattern) -> PatternType:
271271
elif size_diff > 0 and star_position is None:
272272
continue
273273
elif not size_diff and star_position is not None:
274-
t_items.append(UninhabitedType()) # add additional item for star if its empty
274+
t_items.append(
275+
UninhabitedType()
276+
) # add additional item for star if its empty
275277
tuple_types.append(t_items)
276278
else:
277279
normalized_inner_types = []

0 commit comments

Comments
 (0)