[docker-py] Add str type to named parameter in Image.save() method (#15068)

This commit is contained in:
Roberto Fernández Iglesias
2025-11-24 17:33:38 +01:00
committed by GitHub
parent 40f0894ffb
commit d5e3a97bae
+1 -1
View File
@@ -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):