Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
auto-format on check failure
Browse files Browse the repository at this point in the history
Signed-off-by: 2byrds <[email protected]>
2byrds committed Jul 19, 2024
1 parent 6953241 commit db49dd0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-formatting.yml
Original file line number Diff line number Diff line change
@@ -25,4 +25,8 @@ jobs:
run: pip install black

- name: Run black
run: black --check .
run: black --check .

- name: Run black to auto-format
if: failure()
run: black .

0 comments on commit db49dd0

Please sign in to comment.