Skip to content

Commit 8c52264

Browse files
committed
fix
1 parent a3093fe commit 8c52264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_igraph/igraphmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ PyObject* igraphmodule_align_layout(PyObject* self, PyObject* args, PyObject* kw
234234
igraph_t *graph;
235235
igraph_matrix_t layout;
236236

237-
if (!PyArg_ParseTupleAndKeywords(args, kwds, "OO", kwlist, &PyList_Type, &graph_o, &layout_o)) {
237+
if (!PyArg_ParseTupleAndKeywords(args, kwds, "OO", kwlist, &graph_o, &layout_o)) {
238238
return NULL;
239239
}
240240

0 commit comments

Comments
 (0)