From 9e8134b1541e50f3445b2ad16b277b6a47421ee1 Mon Sep 17 00:00:00 2001 From: Jakob Edding <15202881+JakobEdding@users.noreply.github.com> Date: Mon, 24 Jun 2024 09:29:16 +0200 Subject: [PATCH] Exclude .venv from mypy --- backend/setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/setup.cfg b/backend/setup.cfg index 815317c1..752b43b6 100644 --- a/backend/setup.cfg +++ b/backend/setup.cfg @@ -23,6 +23,7 @@ disable_error_code = import warn_no_return = False # don't skip functions which are unannotated, such as tests check_untyped_defs = True +exclude = ['.venv/'] [tool:pytest] testpaths =