It looks like you are using the PDB to make API calls. This is unnecessary, and terribly protracted. This also means that the returned value is a tuple with 1) a status (PDBStatusType.SUCCESS) and 2) the value you want: (<Gimp.GroupLayer object at 0x7f70a7ebb180 (GimpGroupLayer at 0x5561a26ba060)>) .
So either:
So either:
- you unpack all you calls: success, group = procedure.run(config);
- you forego the PDB (just usable to call plugins) and use the API directly: group=layer.get_parent()