diff --git a/format b/format new file mode 100755 index 00000000..00f09504 --- /dev/null +++ b/format @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +if ! which black &>/dev/null; then + echo "Black is required to format this project" + exit 1 +fi + +black . +ret=$? +if [[ $ret -eq 0 ]]; then + echo "Successfully formatted project!" +fi +exit $ret