Skip to content

Commit

Permalink
updated autopep8 settings to ignore line wrapping check
Browse files Browse the repository at this point in the history
Signed-off-by: 2byrds <2byrds@gmail.com>
  • Loading branch information
2byrds committed Aug 6, 2024
1 parent 1ac2ea6 commit b7bfc0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.12'

- name: Install autopep8
run: pip install autopep8

- name: Run autopep8
run: autopep8 --diff --exit-code -r .
run: autopep8 --in-place --ignore=E501 --diff --exit-code -r .

0 comments on commit b7bfc0d

Please sign in to comment.