drake-ai-v1 / Makefile
quinnpertuit's picture
Duplicate from nateraw/voice-cloning
b0c6568
raw
history blame contribute delete
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