Skip to content

Commit 966a0da

Browse files
CreatmanCEOclaude
andcommitted
fix(ci): mypy ignore for Windows-only CREATE_NEW_PROCESS_GROUP
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent d81124a commit 966a0da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/with_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def _spawn(command: str, cwd: str | None, extra_env: dict[str, str], label: str)
7171
env=env,
7272
stdout=sys.stderr,
7373
stderr=sys.stderr,
74-
creationflags=subprocess.CREATE_NEW_PROCESS_GROUP,
74+
creationflags=subprocess.CREATE_NEW_PROCESS_GROUP, # type: ignore[attr-defined, unused-ignore]
7575
)
7676
else:
7777
proc = subprocess.Popen(

0 commit comments

Comments
 (0)