From d25ffa4d054f07cda638071758fb111b7a837e1f Mon Sep 17 00:00:00 2001 From: brostos <67740566+brostosjoined@users.noreply.github.com> Date: Sat, 16 Aug 2025 00:48:13 +0300 Subject: [PATCH] Switch to Black formatting --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de36220..3052b48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,14 +28,14 @@ jobs: - name: Install Dependencies run: | python -m pip install -U pip - python -m pip install -U pycodestyle==2.12.1 autopep8 + python -m pip install -U black python -m pip install -U -r test/pip_reqs.txt - - name: Apply AutoPEP8 + - name: Apply Black run: | - autopep8 --in-place --recursive --max-line-length=100 . + black . --line-length 80 --skip-string-normalization - - name: Commit AutoPEP8 + - name: Commit Black uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "[ci] auto-format"