Use Optional instead of | None

This commit is contained in:
ZipFile 2026-01-31 13:29:30 +00:00
parent 2741cd7ff9
commit b6316a892b

View File

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