From 41ca1726d462b5e872d3eaea71b34f0c60d7c2f4 Mon Sep 17 00:00:00 2001 From: Leonardus Chen Date: Mon, 8 Dec 2025 14:24:28 +0700 Subject: [PATCH] Fix missing newline at EOF --- tests/typing/dict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/typing/dict.py b/tests/typing/dict.py index f7b7c0db..30bfa57c 100644 --- a/tests/typing/dict.py +++ b/tests/typing/dict.py @@ -55,4 +55,4 @@ provider6 = providers.Dict( async def _async3() -> None: var1 = await provider6() # type: ignore var2 = await provider6.async_() - assert_type(var2, Dict[Any, Any]) \ No newline at end of file + assert_type(var2, Dict[Any, Any])