Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
nateraw
/
voice-cloning
like
41
Runtime error
App
Files
Files
Community
3
ee65e1a
voice-cloning
/
Makefile
nateraw
Synced repo using 'sync_with_huggingface' Github Action
532e0c4
over 1 year ago
raw
Copy download link
history
blame
Safe
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