Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
biniona committed Sep 30, 2024
1 parent 838d369 commit 173156c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minject/inject.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 173156c

Please sign in to comment.