mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-09 06:46:18 +08:00
[docker-py] Add str type to named parameter in Image.save() method (#15068)
This commit is contained in:
committed by
GitHub
parent
40f0894ffb
commit
d5e3a97bae
@@ -26,7 +26,7 @@ class Image(Model):
|
||||
def tags(self) -> list[str]: ...
|
||||
def history(self) -> list[Any]: ...
|
||||
def remove(self, force: bool = False, noprune: bool = False) -> dict[str, Any]: ...
|
||||
def save(self, chunk_size: int = 2097152, named: bool = False) -> Iterator[Any]: ...
|
||||
def save(self, chunk_size: int = 2097152, named: str | bool = False) -> Iterator[Any]: ...
|
||||
def tag(self, repository: str, tag: str | None = None, **kwargs) -> bool: ...
|
||||
|
||||
class RegistryData(Model):
|
||||
|
||||
Reference in New Issue
Block a user