Skip to content

Commit b8f604e

Browse files
committed
Fix indentation
1 parent fe7f1e3 commit b8f604e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_sqlite/connection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ _pysqlite_drop_unused_blob_references(pysqlite_Connection* self)
11221122
for (Py_ssize_t i = 0; i < imax; i++) {
11231123
PyObject* weakref = PyList_GET_ITEM(self->blobs, i);
11241124
if (_PyWeakref_IsDead(weakref)) {
1125-
continue;
1125+
continue;
11261126
}
11271127
if (PyList_Append(new_list, weakref) != 0) {
11281128
Py_DECREF(new_list);

0 commit comments

Comments
 (0)