brozzler/Makefile
Misty De Méo ffeaee7a01
Some checks are pending
Python Formatting Check / formatting (push) Waiting to run
Tests / Run tests (3.12) (push) Waiting to run
Tests / Run tests (3.8) (push) Waiting to run
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 09:43:17 -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 .