From 2fb54802b6a52c906c6ec293c3fdfbd11ee886ff Mon Sep 17 00:00:00 2001 From: Gavin Colonese Date: Fri, 12 Jun 2026 10:51:29 -0400 Subject: [PATCH] chore: add fitz to mypy ignore_missing_imports overrides PyMuPDF (`fitz`) has no type stubs, so mypy's import-not-found fails on any edit to files importing it (commands/board/view.py, kicad_interface.py). Same treatment as the existing pcbnew/kipy/PIL entries. Needed so the export-tool commits on this branch pass the mypy pre-commit hook independently. Co-Authored-By: Claude Opus 4.8 (1M context) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index a353a50..f8ed51b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ module = [ "cairosvg", "sexpdata", "skip", + "fitz", "kipy", "kipy.*", "schematic",