File size: 102 Bytes
a59ab81
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
.PHONY: format lint

format:
	black .
lint:
	mypy .
	black --check .
	ruff check .
test:
	pytest tests