Skip to content

Commit 07f16f5

Browse files
committed
update snapshots
1 parent ed53e9b commit 07f16f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ty_python_semantic/resources/mdtest/assignment/annotations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ k: list[tuple[list[int], ...]] | None = [([],), ([1, 2], [3, 4]), ([5], [6], [7]
196196
reveal_type(k) # revealed: list[tuple[list[int], ...]]
197197

198198
l: tuple[list[int], *tuple[list[typing.Any], ...], list[str]] | None = ([1, 2, 3], [4, 5, 6], [7, 8, 9], ["10", "11", "12"])
199-
reveal_type(l) # revealed: tuple[list[int], list[Any | int], list[Any | int], list[str]]
199+
reveal_type(l) # revealed: tuple[list[int], list[Any], list[Any], list[str]]
200200

201201
type IntList = list[int]
202202

0 commit comments

Comments
 (0)