Skip to content

Commit 9b8247a

Browse files
committed
sty: fix unused import, run black
1 parent 56f28c1 commit 9b8247a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nitransforms/io/afni.py

+2-2
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,
@@ -61,7 +60,8 @@ def from_string(cls, string):
6160
lines = [
6261
line
6362
for line in string.splitlines()
64-
if line.strip() and not (line.startswith("#") or "3dvolreg matrices" in line)
63+
if line.strip()
64+
and not (line.startswith("#") or "3dvolreg matrices" in line)
6565
]
6666

6767
if not lines:

0 commit comments

Comments
 (0)