flash / Makefile
Chen
app.py fixable to match hugging-face's app portal
182cbb1
.PHONY: format lint
GIT_ROOT ?= $(shell git rev-parse --show-toplevel)
format:
black .
lint:
mypy .
black . --check
ruff check . --fix
test:
pytest tests