12 lines
85 B
Bash
12 lines
85 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
cd "`dirname $0`"
|
||
|
cd ..
|
||
|
|
||
|
set -x
|
||
|
|
||
|
isort --profile black .
|
||
|
black .
|