brozzler/Makefile
Misty De Méo a23dd6a923 chore: use ruff for formatting
There are a few minor changes here compared to black; it flagged
unnecessary string concatenations, and has slightly different
opinions on line length.
2025-03-05 11:12:46 -08:00

8 lines
153 B
Makefile

.PHONY: format
format:
venv/bin/ruff format --target-version py37 .
.PHONY: ck-format
ck-format:
venv/bin/ruff format --check --target-version py37 .