Skip to content

Commit

Permalink
FIX
Browse files Browse the repository at this point in the history
  • Loading branch information
abpwrs committed Nov 15, 2019
1 parent 78b4236 commit 15f3888
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="slicerfiducials",
version="0.1.3",
version="0.1.4",
author="abpwrs & ArjitJ",
author_email="[email protected]",
description="A small package for slicer fiducial manipulation and analysis.",
Expand Down
2 changes: 1 addition & 1 deletion slicerfiducials/slicerfiducials.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def query(self, name: str, space: Space = Space.PHYSICAL) -> np.ndarray:
"""
physical = self.fiducialToPhysical[name]
if space == Space.INDEX:
assert self.image not None
assert self.image is not None
return np.array(
self.image.TransformPhysicalPointToContinuousIndex(physical)
)
Expand Down

0 comments on commit 15f3888

Please sign in to comment.