Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stubs/docker/docker/models/containers.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Container(Model):
def diff(self): ...
def exec_run(
self,
cmd,
cmd: str | list[str],
stdout: bool = True,
stderr: bool = True,
stdin: bool = False,
Expand All @@ -51,7 +51,7 @@ class Container(Model):
) -> ExecResult: ...
def export(self, chunk_size: int | None = 2097152) -> str: ...
def get_archive(
self, path, chunk_size: int | None = 2097152, encode_stream: bool = False
self, path: str, chunk_size: int | None = 2097152, encode_stream: bool = False
) -> tuple[Incomplete, Incomplete]: ...
def kill(self, signal: Incomplete | None = None): ...
@overload
Expand Down