wangxiuliang01's picture
Duplicate from kevinwang676/Voice-Cloning-for-Bilibili
d3e146d
raw
history blame contribute delete
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