We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd8593e commit cdf57dbCopy full SHA for cdf57db
nibabel/cifti2/cifti2_axes.py
@@ -594,8 +594,8 @@ def __eq__(self, other):
594
return False
595
return (
596
(self.affine is None or
597
- np.allclose(self.affine, other.affine) and
598
- self.volume_shape == other.volume_shape) and
+ np.allclose(self.affine, other.affine) and
+ self.volume_shape == other.volume_shape) and
599
self.nvertices == other.nvertices and
600
np.array_equal(self.name, other.name) and
601
np.array_equal(self.voxel[~self.surface_mask], other.voxel[~other.surface_mask]) and
0 commit comments