mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-04-24 17:39:29 -04:00

There are a few minor changes here compared to black; it flagged unnecessary string concatenations, and has slightly different opinions on line length.
8 lines
153 B
Makefile
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 .
|