7 lines
242 B
Bash
Executable File
7 lines
242 B
Bash
Executable File
#!/usr/bin/env bash
|
|
which autopep8 &> /dev/null || { echo "autopep8 not found, please install it."; exit 1; }
|
|
|
|
autopep8 --in-place --aggressive --aggressive --recursive --exclude .venv,.git,__pycache__ .
|
|
|
|
echo "Code formatted with autopep8."
|