From 76490107fdfeab4d5d88fcd072d074950c40bc7e Mon Sep 17 00:00:00 2001 From: Jonas Weich Date: Sun, 8 Sep 2024 19:49:52 +0200 Subject: [PATCH] Ignore missing imports in mypy workflow --- .github/workflows/mypy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 7fda16d..0b75182 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -20,4 +20,4 @@ jobs: pip install -r requirements.txt - name: Run MyPy run: | - mypy chatminer/ --install-types --non-interactive \ No newline at end of file + mypy chatminer/ --install-types --non-interactive --ignore-missing-imports \ No newline at end of file