cvtools / Makefile
rifatramadhani's picture
wip
2d3e7bb
raw
history blame contribute delete
117 Bytes
.PHONY: lint format test
lint:
flake8 .
format:
black .
test:
python tests/test_utils.py
all: lint format test