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