| 12345678910111213141516171819 | .PHONY: all format lintall: helphelp:	@echo "make"	@echo "    format"	@echo "        Apply black formatting to code."	@echo "    lint"	@echo "        Lint code with ruff, and check if black formatter should be applied."format:	poetry run black .	poetry run ruff . --fixlint:	poetry run black . --check	poetry run ruff .
 |