From 8e2d6405159a474f99b55a7939d1ad5f21b55b3e Mon Sep 17 00:00:00 2001 From: nickolay168 Date: Sat, 12 Sep 2026 00:58:53 -0700 Subject: [PATCH] Fix: issue with mypy in multi-process scenarios --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d93d95f..447af95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,4 +22,4 @@ jobs: run: pip install mypy types-requests - name: Run mypy run: (find . -name "*.py"; grep -lR '^#!.*python') | - xargs -n1 -P8 mypy --strict + xargs -n1 -P8 mypy --strict --cache-dir /dev/null