From 58e310c0c72954bf712de689a36435df8bf88733 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Mon, 28 Aug 2023 09:49:00 +0200 Subject: [PATCH] autopep8: increase line size to 120, else satest style will be reverted again --- resource/tools/make_style.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resource/tools/make_style.sh b/resource/tools/make_style.sh index eeedc88d..42242888 100755 --- a/resource/tools/make_style.sh +++ b/resource/tools/make_style.sh @@ -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.