Skip to content

Commit 70afacb

Browse files
committed
STY: Ignore unused import
1 parent 26dfee3 commit 70afacb

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

nibabel/affines.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import numpy as np
77

88
from six.moves import reduce
9-
from .testing import setup_test
9+
from .testing import setup_test # flake8: noqa F401
1010

1111

1212
class AffineError(ValueError):

nibabel/casting.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from platform import processor, machine
99

1010
import numpy as np
11-
from .testing import setup_test
11+
from .testing import setup_test # flake8: noqa F401
1212

1313

1414
class CastingError(Exception):

nibabel/nicom/dwiparams.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
'''
2222
import numpy as np
2323
import numpy.linalg as npl
24-
from ..testing import setup_test
24+
from ..testing import setup_test # flake8: noqa F401
2525

2626

2727
def B2q(B, tol=None):

nibabel/nifti1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from .spm99analyze import SpmAnalyzeHeader
2828
from .casting import have_binary128
2929
from .pydicom_compat import have_dicom, pydicom as pdcm
30-
from .testing import setup_test
30+
from .testing import setup_test # flake8: noqa F401
3131

3232
# nifti1 flat header definition for Analyze-like first 348 bytes
3333
# first number in comments indicates offset in file header in bytes

nibabel/quaternions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
import math
2929
import numpy as np
30-
from .testing import setup_test
30+
from .testing import setup_test # flake8: noqa F401
3131

3232
MAX_FLOAT = np.maximum_sctype(np.float)
3333
FLOAT_EPS = np.finfo(np.float).eps

0 commit comments

Comments
 (0)