Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rifatramadhani
/
cvtools
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
882b974
cvtools
/
Makefile
rifatramadhani
wip
2d3e7bb
5 months ago
raw
Copy download link
history
blame
Safe
117 Bytes
.PHONY: lint format test
lint:
flake8 .
format:
black .
test:
python tests/test_utils.py
all: lint format test