CoolFace
Apppublic

training-transformers-together/dashboard-embedded

sourceHugging Faceupdated 5y agoView on Hugging Face
0likes
Makefile15 linesDownload Raw Back to root
1 2.PHONY: quality style test test-examples3 4# Check that source code meets quality standards5 6quality:7	python -m black --check --line-length 119 --target-version py38 .8	python -m isort --check-only .9	python -m flake8 --max-line-length 11910 11# Format source code automatically12 13style:14	python -m black --line-length 119 --target-version py38 .15	python -m isort .