#!/usr/bin/env bash
set -e
cd "$(dirname $(dirname "$0"))" || exit

TARGET="gallery"

poetry run isort $TARGET
poetry run black $TARGET -q
