Skip to content

Commit 35d2a8d

Browse files
generatedunixname89002005287564facebook-github-bot
authored andcommitted
Fix CQS signal readability-braces-around-statements in fbcode/cinderx/StaticPython
Reviewed By: dtolnay Differential Revision: D78795544 fbshipit-source-id: 5b602e95595ac66a550e87baa5549ca856c14809
1 parent 67ccda8 commit 35d2a8d

6 files changed

Lines changed: 582 additions & 303 deletions

File tree

StaticPython/_static.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,8 +1003,9 @@ static PyObject* get_build_class() {
10031003
} else {
10041004
bc = PyObject_GetItem(bltins, s___build_class__);
10051005
if (bc == NULL) {
1006-
if (PyErr_ExceptionMatches(PyExc_KeyError))
1006+
if (PyErr_ExceptionMatches(PyExc_KeyError)) {
10071007
PyErr_SetString(PyExc_NameError, "__build_class__ not found");
1008+
}
10081009
return NULL;
10091010
}
10101011
}

0 commit comments

Comments
 (0)