9 lines
139 B
Bash
Executable File
9 lines
139 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
cd "$(dirname $(dirname "$0"))" || exit
|
|
|
|
TARGET="gallery"
|
|
|
|
poetry run isort $TARGET
|
|
poetry run black $TARGET -q
|