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 e47a476 commit 1616a35Copy full SHA for 1616a35
nitransforms/resampling.py
@@ -114,7 +114,6 @@ def apply(
114
if data.ndim < transform.ndim:
115
data = data[..., np.newaxis]
116
elif data_nvols > 1 and data_nvols != xfm_nvols:
117
- import pdb; pdb.set_trace()
118
raise ValueError(
119
"The fourth dimension of the data does not match the transform's shape."
120
)
nitransforms/tests/test_base.py
@@ -186,7 +186,6 @@ def test_SurfaceMesh(testdata_path):
186
187
with pytest.raises(ValueError):
188
SurfaceMesh(nb.load(img_path))
189
- """
+
190
with pytest.raises(TypeError):
191
SurfaceMesh(nb.load(shape_path))
192
0 commit comments