Skip to content

Commit 01af294

Browse files
committed
Fix indentation
1 parent 5c3727c commit 01af294

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
@@ -1117,7 +1117,7 @@ _pysqlite_drop_unused_blob_references(pysqlite_Connection* self)
11171117
for (Py_ssize_t i = 0; i < imax; i++) {
11181118
PyObject* weakref = PyList_GET_ITEM(self->blobs, i);
11191119
if (_PyWeakref_IsDead(weakref)) {
1120-
continue;
1120+
continue;
11211121
}
11221122
if (PyList_Append(new_list, weakref) != 0) {
11231123
Py_DECREF(new_list);

0 commit comments

Comments
 (0)