Eto in Rh8 - Py2 to Py3

Hi,

but Eto codes made with Py2,
how to modify them to fit Py3?

ok maybe I understood the problem:

self.m_grpbox01 = frm.GroupBox(Text = "Groupbox 01")
with this syntax it is only good in Py2

self.m_grpbox01 = frm.GroupBox()
self.m_grpbox01.Text = "Groupbox 01"

with this syntax it’s fine in Py2 and Py3