chatdoctor / Makefile
GGYIMAH1031's picture
uploaded all single files
a59ab81 verified
raw
history blame contribute delete
102 Bytes
.PHONY: format lint
format:
black .
lint:
mypy .
black --check .
ruff check .
test:
pytest tests