Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* 'master' of https://github.com/LettError/ufoProcessor:
  Update __init__.py
  • Loading branch information
LettError committed Mar 24, 2020
2 parents 2cf8d4e + a54f0ea commit 88323a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Lib/ufoProcessor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit 88323a4

Please sign in to comment.