File size: 250 Bytes
79d85b6
 
 
 
 
 
 
e4749c5
1
2
3
4
5
6
7
8
style:
	python -m black --line-length 119 --target-version py39 .
	python -m isort .

quality:
	python -m black --check --line-length 119 --target-version py39 .
	python -m isort --check-only .
	python -m flake8 --max-line-length 119 --exclude app.py