.PHONY: lint format test lint: flake8 . format: black . test: python tests/test_utils.py all: lint format test