From e0fb73117f30ae41e9fb7e6a4b249546753f5356 Mon Sep 17 00:00:00 2001 From: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com> Date: Sun, 9 Mar 2025 23:28:56 -0700 Subject: [PATCH] ci: exclude "build" and "dist" folders from mypy --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 3b7f3c55..dda76018 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,6 +60,7 @@ ignore_missing_imports = true implicit_optional = true strict_optional = false warn_unused_ignores = true +exclude = ["build", "dist"] [[tool.mypy.overrides]] module = "tagstudio.qt.main_window"