autopep8: increase line size to 120, else satest style will be reverted again

This commit is contained in:
Philippe Teuwen
2023-08-28 09:49:00 +02:00
parent 4272d7661a
commit 58e310c0c7
+1 -1
View File
@@ -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.