and one more fix

This commit is contained in:
2026-02-01 23:17:59 +03:00
parent c72c876de7
commit b8249ebd47
2 changed files with 3 additions and 2 deletions

View File

@@ -31,8 +31,8 @@ jobs:
- name: Code style check (isort + Black, one order — no conflict)
run: |
echo "🔍 Applying isort then black (pyproject.toml: isort profile=black)..."
isort .
black .
python -m isort .
python -m black .
echo "🔍 Checking that repo is already formatted (no diff after isort+black)..."
git diff --exit-code || (
echo "❌ Code style drift. Locally run: isort . && black . && git add -A && git commit -m 'style: isort + black'"