From 6a145ea5f9b464b94ae4f58c0b8a6d1a5374519f Mon Sep 17 00:00:00 2001 From: RomanMIzulin Date: Mon, 12 Aug 2024 10:56:35 +0400 Subject: [PATCH] Update typesafety/test_result/test_partition.yml Co-authored-by: sobolevn --- typesafety/test_result/test_partition.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typesafety/test_result/test_partition.yml b/typesafety/test_result/test_partition.yml index 47fcc2ca..4214be2f 100644 --- a/typesafety/test_result/test_partition.yml +++ b/typesafety/test_result/test_partition.yml @@ -14,6 +14,6 @@ from returns.result.methods import partition from returns.io import IO, IOResult - x: List[IOResult[int, str], IOResult[int,str]] + x: Tuple[IOResult[int, str], IOResult[int, str]] reveal_type(partition(x)) # N: Revealed type is "Tuple[builtins.list[IO[builtin.int]],builtins.list[IO[builtin.int]]"