Switch to Black formatting

This commit is contained in:
brostos 2025-08-16 00:48:13 +03:00 committed by GitHub
parent 014f3c3a87
commit d25ffa4d05
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"