diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-07-21 20:21:59 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-07-21 20:21:59 (GMT) |
commit | 6a8385724c74b07cf9ed4cb9052f1af1816e3ea5 (patch) | |
tree | a7bea8a4bb9c816da77cf5c3dd44fbd8fb89b3a7 /plugins/pychrysalide/gtkext/graph | |
parent | f0682e7b195acbd4d83148f3829479d682f9ee9f (diff) |
Created more converters for Python arguments.
Diffstat (limited to 'plugins/pychrysalide/gtkext/graph')
-rw-r--r-- | plugins/pychrysalide/gtkext/graph/cluster.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/pychrysalide/gtkext/graph/cluster.c b/plugins/pychrysalide/gtkext/graph/cluster.c index 1c664a0..c87655a 100644 --- a/plugins/pychrysalide/gtkext/graph/cluster.c +++ b/plugins/pychrysalide/gtkext/graph/cluster.c @@ -155,8 +155,7 @@ static PyObject *py_graph_cluster_find_by_widget(PyObject *self, PyObject *args) Py_DECREF(gtk_mod); - ret = PyArg_ParseTuple(args, "O!", - type, &widget_obj); + ret = PyArg_ParseTuple(args, "O!", type, &widget_obj); Py_DECREF(type); |