We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56f28c1 commit 9b8247aCopy full SHA for 9b8247a
nitransforms/io/afni.py
@@ -3,7 +3,6 @@
3
import numpy as np
4
from nibabel.affines import obliquity, voxel_sizes, from_matvec
5
6
-from ..patched import shape_zoom_affine
7
from .base import (
8
BaseLinearTransformList,
9
DisplacementsField,
@@ -61,7 +60,8 @@ def from_string(cls, string):
61
60
lines = [
62
line
63
for line in string.splitlines()
64
- if line.strip() and not (line.startswith("#") or "3dvolreg matrices" in line)
+ if line.strip()
+ and not (line.startswith("#") or "3dvolreg matrices" in line)
65
]
66
67
if not lines:
0 commit comments