From 60ccf49ac710ce9d9dcb12442f1ad5a54b76bac2 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Tue, 4 Jun 2024 23:34:01 -0400 Subject: [PATCH] Fix typing test --- tests/typing/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/typing/configuration.py b/tests/typing/configuration.py index e19cb9ca..f6adf245 100644 --- a/tests/typing/configuration.py +++ b/tests/typing/configuration.py @@ -6,7 +6,7 @@ # Test 1: to check the getattr -config1: providers.Provider[Any] = providers.Configuration() +config1: providers.Configuration = providers.Configuration() provider1: providers.Provider[dict] = providers.Factory(dict, a=config1.a) # Test 2: to check the from_*() method