Skip to content

Commit

Permalink
fix: type provider (#744)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipbjorge authored Jan 12, 2025
1 parent ccbd5bb commit de50666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dependency_injector/providers.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Provider(Generic[T]):
def unregister_overrides(self, provider: Union[Provider, Any]) -> None: ...
def delegate(self) -> Provider: ...
@property
def provider(self) -> Provider: ...
def provider(self) -> Provider[T]: ...
@property
def provided(self) -> ProvidedInstance[T]: ...
def enable_async_mode(self) -> None: ...
Expand Down

0 comments on commit de50666

Please sign in to comment.