Skip to content

Commit 92dd860

Browse files
authored
Update win32.py
1 parent 6afa60e commit 92dd860

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/mcp/client/stdio/win32.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def __init__(self, popen_obj: subprocess.Popen[bytes]):
6262
self.stdin_raw = popen_obj.stdin # type: ignore[assignment]
6363
self.stdout_raw = popen_obj.stdout # type: ignore[assignment]
6464
self.stderr = popen_obj.stderr # type: ignore[assignment]
65+
self.pid = popen_obj.pid
6566

6667
self.stdin = FileWriteStream(cast(BinaryIO, self.stdin_raw)) if self.stdin_raw else None
6768
self.stdout = FileReadStream(cast(BinaryIO, self.stdout_raw)) if self.stdout_raw else None

0 commit comments

Comments
 (0)