Skip to content

Commit 225145c

Browse files
authored
chunk_size parameter of get_image accepts None (#12560)
1 parent a7ff1be commit 225145c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/docker/docker/api/image.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from typing import Any
44
log: Incomplete
55

66
class ImageApiMixin:
7-
def get_image(self, image: str, chunk_size: int = 2097152): ...
7+
def get_image(self, image: str, chunk_size: int | None = 2097152): ...
88
def history(self, image): ...
99
def images(self, name: str | None = None, quiet: bool = False, all: bool = False, filters: Incomplete | None = None): ...
1010
def import_image(

0 commit comments

Comments
 (0)