Skip to content

Commit 44de133

Browse files
committed
Fix C-code formatting to pass linting of GH15344
1 parent b7e404f commit 44de133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/src/ujson/python/objToJSON.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ static void *PyUnicodeToUTF8(JSOBJ _obj, JSONTypeContext *tc, void *outValue,
404404
PyObject *obj = (PyObject *)_obj;
405405

406406
#if (PY_VERSION_HEX >= 0x03030000)
407-
if(PyUnicode_IS_COMPACT_ASCII(obj)) {
407+
if (PyUnicode_IS_COMPACT_ASCII(obj)) {
408408
Py_ssize_t len;
409409
char *data = PyUnicode_AsUTF8AndSize(obj, &len);
410410
*_outLen = len;

0 commit comments

Comments
 (0)