From 36a663d2d5f253ce331e8e78ef69b1e91cc2488b Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 12 Jul 2025 11:40:13 +0200 Subject: [PATCH] Revert "try making pytype job faster" This reverts commit fa3a90efaf4b1a6f3c235bcf37ee9711ada3829e. Already passing all files at once. --- .github/workflows/checksrc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checksrc.yml b/.github/workflows/checksrc.yml index dd681032c2..56ec41620a 100644 --- a/.github/workflows/checksrc.yml +++ b/.github/workflows/checksrc.yml @@ -82,7 +82,7 @@ jobs: run: scripts/cmakelint.sh - name: 'pytype' - run: pytype -j auto -k $(find . -name '*.py') + run: find . -name '*.py' -exec pytype -j auto -k {} + - name: 'ruff' run: scripts/pythonlint.sh