Skip to content

Commit 8a993f5

Browse files
committed
sty: fix unused import, run black
1 parent bf249ca commit 8a993f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nitransforms/io/afni.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import numpy as np
44
from nibabel.affines import obliquity, voxel_sizes, from_matvec
55

6-
from ..patched import shape_zoom_affine
76
from .base import (
87
BaseLinearTransformList,
98
DisplacementsField,
@@ -68,7 +67,8 @@ def from_string(cls, string):
6867
lines = [
6968
line
7069
for line in string.splitlines()
71-
if line.strip() and not (line.startswith("#") or "3dvolreg matrices" in line)
70+
if line.strip()
71+
and not (line.startswith("#") or "3dvolreg matrices" in line)
7272
]
7373

7474
if not lines:

0 commit comments

Comments
 (0)