Skip to content

Commit c1884f5

Browse files
Update Objects/typeobject.c
Co-authored-by: Kumar Aditya <[email protected]>
1 parent b185436 commit c1884f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/typeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11871,7 +11871,7 @@ _PyType_InitSlotDefs(PyInterpreterState *interp)
1187111871
while (PyDict_Next(cache, &pos, &key, &value)) {
1187211872
uint8_t *data = (uint8_t *)PyByteArray_AS_STRING(value);
1187311873
uint8_t n = data[0];
11874-
for(uint8_t i = 0; i < n; i++) {
11874+
for (uint8_t i = 0; i < n; i++) {
1187511875
uint8_t idx = data[i + 1];
1187611876
slotdefs_name_counts[idx] = n;
1187711877
}

0 commit comments

Comments
 (0)