Skip to content

Commit 6b3d72c

Browse files
committed
Fix line wrapping
1 parent d292a17 commit 6b3d72c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Modules/_bisectmodule.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ insort_right(PyObject *self, PyObject *args, PyObject *kw)
8686
if (PyList_Insert(list, index, item) < 0)
8787
return NULL;
8888
} else {
89-
result = PyObject_CallMethod(list, "insert", "nO",
90-
index, item);
89+
result = PyObject_CallMethod(list, "insert", "nO", index, item);
9190
if (result == NULL)
9291
return NULL;
9392
Py_DECREF(result);
@@ -187,8 +186,7 @@ insort_left(PyObject *self, PyObject *args, PyObject *kw)
187186
if (PyList_Insert(list, index, item) < 0)
188187
return NULL;
189188
} else {
190-
result = PyObject_CallMethod(list, "insert", "iO",
191-
index, item);
189+
result = PyObject_CallMethod(list, "insert", "iO", index, item);
192190
if (result == NULL)
193191
return NULL;
194192
Py_DECREF(result);

0 commit comments

Comments
 (0)