Skip to content
Snippets Groups Projects
Verified Commit 4d6da4fe authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Add autopep8 command to dev.sh.

parent 8dfccc1f
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,14 @@ case "$1" in ...@@ -29,6 +29,14 @@ case "$1" in
poetry run sh -c "cd $d; $manage_py makemessages --no-wrap -i static $locales" poetry run sh -c "cd $d; $manage_py makemessages --no-wrap -i static $locales"
done done
;; ;;
"autopep8")
cd "$(dirname "$0")"
for d in biscuit/core apps/official/*/biscuit/apps/*; do
echo; echo "Entering $d."
poetry run sh -c "cd $d; autopep8 -i -r ."
done
;;
*) *)
;; ;;
esac esac
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment