voice-cloning / Makefile
merve's picture
merve HF staff
Duplicate from nateraw/voice-cloning
54b030e
.PHONY: quality style
# Check that source code meets quality standards
quality:
black --check --diff .
ruff .
# Format source code automatically
style:
black .
ruff . --fix