Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed May 15, 2015
1 parent 4b06141 commit 2874520
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion regions/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def symmetric_difference(self, other):
Returns a region representing the area that is contained in exactly
one region between this region and ``other``.
"""
raise NotImplementedError("")

def union(self, other):
"""
Expand Down Expand Up @@ -115,7 +116,7 @@ def to_mask(self, mode='center'):
Slices for x and y which can be used on an array to extract the
same region as the mask.
"""
raise NotImplementedError("")
raise NotImplementedError("")


@six.add_metaclass(abc.ABCMeta)
Expand Down

0 comments on commit 2874520

Please sign in to comment.