make flag/enable required argument

update pybullet quickstart guide PDF from
https://docs.google.com/document/d/10sXEhzFRSnvFcl3XxNGhnD4N2SedqwdAvK3dsihxVUA/edit#
This commit is contained in:
Erwin Coumans 2017-02-21 17:53:49 -08:00
parent 926c83f2ab
commit 218f883211
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -2966,7 +2966,7 @@ static PyObject* pybullet_configureDebugVisualizer(PyObject* self, PyObject* arg
b3PhysicsClientHandle sm=0;
static char *kwlist[] = { "flag", "enable", "physicsClientId", NULL };
if (!PyArg_ParseTupleAndKeywords(args, keywds, "|iii", kwlist,
if (!PyArg_ParseTupleAndKeywords(args, keywds, "ii|i", kwlist,
&flag, &enable, &physicsClientId))
return NULL;