cmc/cleberg.net
My personal web garden & blog.
clone: git clone https://gitbay.org/cmc/cleberg.net.git
b1b03a576619e91a82550d25c896771a406fe254
verified · cmc
author: Christian Cleberg <hello@cleberg.net> · 2026-03-23T16:58:56Z
build.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) @@ -37,7 +37,9 @@ from pathlib import Path def run_ruff(): print("Running ruff...") for cmd in [["ruff", "check", "--fix"], ["ruff", "format"]]: - result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + result = subprocess.run( + cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True + ) if result.returncode != 0: print(f"ruff error ({' '.join(cmd)}):") print(result.stderr, file=sys.stderr)