From b1c83ce189de3b68dbbf090a51355afa2dac4456 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 31 Mar 2024 09:35:17 +0200 Subject: [PATCH] Exclude build dir from mypy --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f7a244c8b..6c5252c59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -88,7 +88,8 @@ ignore_missing_imports = true namespace_packages = false warn_unused_ignores = true exclude = [ - '^build_helpers\.py$' + '^build_helpers\.py$', + '^ft_client/build/.*$', ] plugins = [ "sqlalchemy.ext.mypy.plugin"