Small typo in Cell::getComponentsUnder() Python wrapper.

This commit is contained in:
Jean-Paul Chaput 2021-05-22 14:54:36 +02:00
parent 8ce16add53
commit 90300eb651
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ extern "C" {
METHOD_HEAD("Cell.getComponentsUnder()")
PyBox* pyBox;
if (!PyArg_ParseTuple(args,"O!:Cell.getInstancesUnder", &PyTypeBox, &pyBox)) {
if (!PyArg_ParseTuple(args,"O!:Cell.getComponentsUnder", &PyTypeBox, &pyBox)) {
return NULL;
}
PyComponentCollection* pyComponentCollection = NULL;