From ff3b318142dfb59a89f5fa6a0be58ad934779a0e Mon Sep 17 00:00:00 2001 From: Projeet Date: Mon, 17 Aug 2026 18:06:40 +0100 Subject: [PATCH] fix(typecheck): pin mypy's analysis platform so results match CI mypy defaults to the host platform, so a Windows contributor sees three src/agents/sandbox/ errors that CI, which runs on Linux, never reports. Closes #4477 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 1d76edc8e2..8c5ac675f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -153,6 +153,7 @@ strict = true disallow_incomplete_defs = false disallow_untyped_defs = false disallow_untyped_calls = false +platform = "linux" [[tool.mypy.overrides]] module = "sounddevice.*"