#!/bin/bash

set -e

SOURCES=$(find *.py octodns tests -name "*.py")

. env/bin/activate

black --line-length=80 --skip-string-normalization --skip-magic-trailing-comma "$@" $SOURCES
