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