Skip to content

Commit 6387919

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mypy/test/testtypes.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,9 @@ def test_tuples(self) -> None:
11291129
self.assert_meet(
11301130
self.tuple(self.fx.a, self.fx.a), self.fx.std_tuple, self.tuple(self.fx.a, self.fx.a)
11311131
)
1132-
self.assert_meet(self.tuple(self.fx.a), self.tuple(self.fx.a, self.fx.a), UninhabitedType())
1132+
self.assert_meet(
1133+
self.tuple(self.fx.a), self.tuple(self.fx.a, self.fx.a), UninhabitedType()
1134+
)
11331135

11341136
def test_function_types(self) -> None:
11351137
self.assert_meet(

0 commit comments

Comments
 (0)