From 2ed83ed7dcda2c8a01cda5049ba7dc0791955c42 Mon Sep 17 00:00:00 2001 From: Jordandev678 <20153053+Jordandev678@users.noreply.github.com> Date: Thu, 19 Sep 2024 16:32:42 +0000 Subject: [PATCH] Update case for types directly in get_args call --- test-data/unit/check-get-args.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-data/unit/check-get-args.test b/test-data/unit/check-get-args.test index a244ee68e121..d6252d625f67 100644 --- a/test-data/unit/check-get-args.test +++ b/test-data/unit/check-get-args.test @@ -20,7 +20,7 @@ normalImplicit = Literal["a", "bc"] normalExplicit: TypeAlias = Literal["a", "bc"] reveal_type(get_args(normalImplicit)) # N: Revealed type is "Tuple[Union[Literal['a'], Literal['bc']], Union[Literal['a'], Literal['bc']]]" reveal_type(get_args(normalExplicit)) # N: Revealed type is "Tuple[Union[Literal['a'], Literal['bc']], Union[Literal['a'], Literal['bc']]]" -#reveal_type(get_args(Literal["a", "bc"])) +reveal_type(get_args(Literal["a", "bc"])) # N: Revealed type is "typing._SpecialForm" [builtins fixtures/primitives.pyi] [typing fixtures/typing-full.pyi]