Merge pull request #392 from bombsquad-community/brostosjoined-blacklinting

Switch to Black formatting
This commit is contained in:
Loup 2025-08-16 18:11:06 +05:30 committed by GitHub
commit c63c1a8460
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"