Skip to content

Commit e943f60

Browse files
authored
Merge branch 'main' into fix-docker-exec
2 parents b5f4211 + 61f2be3 commit e943f60

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

stubs/docker/docker/api/exec_api.pyi

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,3 +115,22 @@ class ExecApiMixin:
115115
socket: Literal[False] = False,
116116
demux: Literal[False] = False,
117117
) -> bytes: ...
118+
@overload
119+
def exec_start(
120+
self,
121+
exec_id: str,
122+
detach: bool = False,
123+
tty: bool = False,
124+
stream: bool = False,
125+
socket: bool = False,
126+
demux: bool = False,
127+
) -> (
128+
str
129+
| SocketIO
130+
| _BufferedReaderStream
131+
| SSHSocket
132+
| CancellableStream[bytes]
133+
| CancellableStream[tuple[str | None, str | None]]
134+
| tuple[str | None, str | None]
135+
| bytes
136+
): ...

0 commit comments

Comments
 (0)