Skip to content

Commit

Permalink
Merge pull request #5533 from jeffrey-hokanson/master
Browse files Browse the repository at this point in the history
Fixes #5522, bug in custom scale example
  • Loading branch information
tacaswell committed Nov 20, 2015
2 parents 9413188 + 2025974 commit 7f46613
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/api/custom_scale_example.py
Expand Up @@ -103,6 +103,7 @@ class MercatorLatitudeTransform(mtransforms.Transform):
input_dims = 1
output_dims = 1
is_separable = True
has_inverse = True

def __init__(self, thresh):
mtransforms.Transform.__init__(self)
Expand Down Expand Up @@ -138,6 +139,7 @@ class InvertedMercatorLatitudeTransform(mtransforms.Transform):
input_dims = 1
output_dims = 1
is_separable = True
has_inverse = True

def __init__(self, thresh):
mtransforms.Transform.__init__(self)
Expand Down

0 comments on commit 7f46613

Please sign in to comment.