From 173156c6531a2513d72f39f99e7c3ff0b2d37ec0 Mon Sep 17 00:00:00 2001 From: Aleksander Binion Date: Mon, 30 Sep 2024 18:24:37 -0400 Subject: [PATCH] fix type error --- minject/inject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minject/inject.py b/minject/inject.py index 69ec06b..57eb19d 100644 --- a/minject/inject.py +++ b/minject/inject.py @@ -336,7 +336,7 @@ def resolve(self, registry_impl: Resolver) -> T_co: else: return cast(T_co, self._default) - async def aresolve(self, registry_impl: Resolver) -> Coroutine[Any, Any, T_co]: + async def aresolve(self, registry_impl: Resolver) -> T_co: raise NotImplementedError("Have not implemented async registry config") @property