Skip to content

Commit

Permalink
autopep8: increase line size to 120, else satest style will be revert…
Browse files Browse the repository at this point in the history
…ed again
  • Loading branch information
doegox committed Aug 28, 2023
1 parent 4272d76 commit 58e310c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resource/tools/make_style.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ find . \( -not -path "./.git/*" -and -not -path "./firmware/nrf52_sdk/*" -and -n
# Apply autopep8 on *py
find . \( -not -path "./.git/*" -and -not -path "./firmware/nrf52_sdk/*" -and -not -path "*/venv/*" -and -not -path "*/tmp/*" -and \
-name "*.py" \) \
-exec autopep8 -i {} \;
-exec autopep8 --in-place --max-line-length 120 {} \;


# Detecting tabs.
Expand Down

0 comments on commit 58e310c

Please sign in to comment.