From bde669a608a6be26e8ae039f9535886e20193204 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 10 Jan 2026 11:42:44 -0800 Subject: [PATCH] fix: Run black on protobuf Python files in CI check The assert-no-changes.sh script was missing black formatting for the generated Python protobuf files, causing CI to fail after commit aa9c561 applied black formatting to those files. Co-Authored-By: Claude Opus 4.5 --- 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 252a644..5abb859 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 +black rbproto/python prettier ./rbproto --write git ls-files | xargs md5sum > after.txt