File size: 117 Bytes
2d3e7bb
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: lint format test

lint:
	flake8 .

format:
	black .

test:
	python tests/test_utils.py

all: lint format test