Add keep_cache argument to Container.wire typings (#952)

This commit is contained in:
Roman Tolkachyov 2026-01-31 16:27:38 +03:00 committed by GitHub
parent 03df1a51ae
commit 2741cd7ff9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,6 +73,7 @@ class Container:
modules: Optional[Iterable[Any]] = None,
packages: Optional[Iterable[Any]] = None,
from_package: Optional[str] = None,
keep_cache: bool | None = None,
warn_unresolved: bool = False,
) -> None: ...
def unwire(self) -> None: ...