Update src/dependency_injector/providers.pyi

Co-authored-by: ZipFile <lin.aaa.lin@gmail.com>
This commit is contained in:
Gonzalo Martinez 2025-01-07 14:18:53 -08:00 committed by GitHub
parent 185a491521
commit a3bca549c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -69,7 +69,7 @@ class Provider(Generic[T]):
@property
def provider(self) -> Provider: ...
@property
def provided(self) -> T: ...
def provided(self) -> ProvidedInstance[T]: ...
def enable_async_mode(self) -> None: ...
def disable_async_mode(self) -> None: ...
def reset_async_mode(self) -> None: ...