Skip to content

Commit

Permalink
Fixing bug when no default if provided.
Browse files Browse the repository at this point in the history
  • Loading branch information
typemytype committed Jul 9, 2024
1 parent 31077cc commit da24c0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def makeMasterOnDefaultLocation(self):
defaulSource = self.operator.findDefault()
neutralLocation = defaulSource.location
for axis in self.operator.axes:
axis.default = axis.axis.map_backward(neutralLocation[axis.name])
axis.default = axis.map_backward(neutralLocation[axis.name])
self.report.writeDict(neutralLocation)
self.report.dedent()
self.report.newLine()
Expand Down

0 comments on commit da24c0b

Please sign in to comment.