Skip to content
Snippets Groups Projects
Commit dd088f5b authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

BF: typo

parent 6e3e27e4
No related branches found
No related tags found
No related merge requests found
...@@ -1518,10 +1518,10 @@ class Image(Nifti): ...@@ -1518,10 +1518,10 @@ class Image(Nifti):
# as having 3 dimensions. # as having 3 dimensions.
shape = self.shape shape = self.shape
realShape = self.realShape realShape = self.realShape
slc = canonicalSliceObj(slc, shape) slc = canonicalSliceObj( slc, shape)
fancy = isValidFancySliceObj(sliceobj, shape) fancy = isValidFancySliceObj(slc, shape)
expNdims, expShape = expectedShape( slc, shape) expNdims, expShape = expectedShape( slc, shape)
slc = canonicalSliceObj(slc, realShape) slc = canonicalSliceObj( slc, realShape)
if self.__dataMgr is not None: data = self.__dataMgr[slc] if self.__dataMgr is not None: data = self.__dataMgr[slc]
elif self.__data is not None: data = self.__data[slc] elif self.__data is not None: data = self.__data[slc]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment