0.35.0
Injected
annotation
It's now possible to use Injected[T]
instead of Annotated[Inject, T]
to mark functions parameters for injection (by @nrbnlulu):
@inject
def function(
parameter: Injected[Class],
) -> None:
...