GSSmartComponentAxis in 2.5b

Hello Glyphs team,

I am trying to use smart components using Python script. Handling GSSmartComponentAxis, it was fine in 2.4.4 version. But I updated 2.5b today, it doesn’t work like below.

axis = GSSmartComponentAxis()
axis.name = 'Thickness'
axis.topValue = 1000
axis.bottomValue = 0

Error messages are like below.

Traceback (most recent call last):
  File "<string>", line 2, in <module>
  File "GlyphsApp/GlyphsApp/__init__.py", line 6423, in <lambda>
AttributeError: 'GSPartProperty' object has no attribute 'setname_'

Please let me know how to handle this problem.

There was a typo in the wrapper. For now (until tomorrow or so), use axis.setName_("Thickness").

Thanks for letting me the solution.