Skip to content

Commit ba04168

Browse files
authored
Fix indentation
1 parent 5bba97e commit ba04168

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_sqlite/connection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ _pysqlite_drop_unused_blob_references(pysqlite_Connection* self)
10761076
for (Py_ssize_t i = 0; i < imax; i++) {
10771077
PyObject* weakref = PyList_GET_ITEM(self->blobs, i);
10781078
if (_PyWeakref_IsDead(weakref)) {
1079-
continue;
1079+
continue;
10801080
}
10811081
if (PyList_Append(new_list, weakref) != 0) {
10821082
Py_DECREF(new_list);

0 commit comments

Comments
 (0)