From 272e754510c5006cb66a49e30feb07044d9ffba4 Mon Sep 17 00:00:00 2001 From: Loewy Date: Fri, 30 Jan 2026 14:21:17 -0800 Subject: [PATCH] fix ci by adding pip black install --- bin/assert-no-changes.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/assert-no-changes.sh b/bin/assert-no-changes.sh index 5abb859..d4f9a9a 100755 --- a/bin/assert-no-changes.sh +++ b/bin/assert-no-changes.sh @@ -9,6 +9,7 @@ for proto in $(find ./rbproto -iname '*.proto'); do protoc -I=./rbproto --python_out=./rbproto/python --pyi_out=./rbproto/python ./rbproto/shot.proto yarn pbjs ./rbproto/shot.proto --ts ./rbproto/ts/shot.ts done +pip install black >/dev/null 2>&1 || true black rbproto/python prettier ./rbproto --write -- 2.49.1