chunk_size parameter of get_image accepts None (#12560)

This commit is contained in:
kasium
2024-08-20 13:22:59 +02:00
committed by GitHub
parent a7ff1be439
commit 225145cde5

View File

@@ -4,7 +4,7 @@ from typing import Any
log: Incomplete
class ImageApiMixin:
def get_image(self, image: str, chunk_size: int = 2097152): ...
def get_image(self, image: str, chunk_size: int | None = 2097152): ...
def history(self, image): ...
def images(self, name: str | None = None, quiet: bool = False, all: bool = False, filters: Incomplete | None = None): ...
def import_image(