fix: type propogation through provided

This commit is contained in:
Philip Bjorge 2023-08-02 17:17:15 -07:00 committed by GitHub
parent cc2304e46e
commit fc4998b86d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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