12 lines
132 B
Makefile
12 lines
132 B
Makefile
|
run *name:
|
||
|
python3 ./model.py -n "{{ name }}"
|
||
|
|
||
|
fmt:
|
||
|
black ./*.py
|
||
|
|
||
|
lint:
|
||
|
ruff check ./model.py
|
||
|
|
||
|
clean:
|
||
|
rm -rf output
|