5 lines
181 B
Bash
Executable file
5 lines
181 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# This will format all python file
|
|
# argument 1: directory or file to format
|
|
source ./.venv/bin/activate
|
|
black -l 79 --experimental-string-processing -t py37 $@
|