voice-cloning / Makefile
nateraw's picture
Synced repo using 'sync_with_huggingface' Github Action
532e0c4
raw
history blame
No virus
179 Bytes
.PHONY: quality style
# Check that source code meets quality standards
quality:
black --check --diff .
ruff .
# Format source code automatically
style:
black .
ruff . --fix