Group ghpythonlib/component

because if I use “Group” in ghpythonlib in the output >a< the result is not merged into a group, while if I connect the component “Group” to the output of >a< by doing the Bake the result is a single group?

ps in the code I also tried to use FlattenTree but nothing changes

Hi

ok @Rh-3d-p thank you

from Grasshopper.Kernel.Types import GH_GeometryGroup
from Grasshopper.Kernel import GH_Convert

gh_Geos = [GH_Convert.ToGeometricGoo(g) for g in geos]
ghGroup = GH_GeometryGroup()
ghGroup.Objects.AddRange(gh_Geos)
a = ghGroup

in the link you posted using the code for python it works :+1: