diff --git a/Lib/ufoProcessor/__init__.py b/Lib/ufoProcessor/__init__.py index ea4d54f..4d5ec8c 100644 --- a/Lib/ufoProcessor/__init__.py +++ b/Lib/ufoProcessor/__init__.py @@ -328,9 +328,9 @@ def _getAxisOrder(self): return [a.name for a in self.axes] axisOrder = property(_getAxisOrder, doc="get the axis order from the axis descriptors") - + serializedAxes = property(getSerializedAxes, doc="a list of dicts with the axis values") - + def getVariationModel(self, items, axes, bias=None): # Return either a mutatorMath or a varlib.model object for calculating. try: @@ -865,8 +865,8 @@ def isAnisotropic(self, location): return False def splitAnisotropic(self, location): - x = {} - y = {} + x = Location() + y = Location() for dim, val in location.items(): if type(val)==tuple: x[dim] = val[0]