Files
github-octodns/script/format
2023-04-05 14:54:08 -07:00

11 lines
184 B
Bash
Executable File

#!/bin/bash
set -e
SOURCES="$(find *.py octodns tests -name '*.py') $(grep --files-with-matches '^#!.*python' script/*)"
. env/bin/activate
isort "$@" $SOURCES
black "$@" $SOURCES