1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00
Files
github-octodns/script/format
2023-01-22 13:56:13 -08:00

11 lines
130 B
Bash
Executable File

#!/bin/bash
set -e
SOURCES=$(find *.py octodns tests -name "*.py")
. env/bin/activate
isort "$@" $SOURCES
black "$@" $SOURCES