Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
X-Pipe
/
flash
like
0
Sleeping
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
main
flash
/
Makefile
Chen
app.py fixable to match hugging-face's app portal
182cbb1
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
163 Bytes
.PHONY
: format lint
GIT_ROOT ?= $(shell git rev-parse --show-toplevel)
format:
black .
lint:
mypy .
black . --check
ruff
check
. --fix
test:
pytest tests