fintest / Makefile
june-woo's picture
Duplicate from gradio-templates/leaderboard
d9c6b38 verified
raw
history blame contribute delete
208 Bytes
.PHONY: style format
style:
python -m black --line-length 119 .
python -m isort .
ruff check --fix .
quality:
python -m black --check --line-length 119 .
python -m isort --check-only .
ruff check .