Skip to content

Commit fcbaad8

Browse files
committed
FIX: Missing and unused imports
1 parent c87c6bf commit fcbaad8

File tree

7 files changed

+3
-5
lines changed

7 files changed

+3
-5
lines changed

nipype/interfaces/cmtk/cmtk.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
from ... import logging
1212
from ...utils.filemanip import split_filename
13-
from ...utils import NUMPY_MMAP
1413

1514
from ..base import (
1615
BaseInterface,

nipype/interfaces/dipy/anisotropic_power.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3+
import numpy as np
34
import nibabel as nb
45

56
from ... import logging

nipype/interfaces/dipy/simulate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import nibabel as nb
77

88
from ... import logging
9-
from ...utils import NUMPY_MMAP
109
from ..base import (
1110
traits,
1211
TraitedSpec,

nipype/interfaces/dipy/tensors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3+
import numpy as np
34
import nibabel as nb
45

56
from ... import logging

nipype/interfaces/nipy/model.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# -*- coding: utf-8 -*-
22
import os
33

4-
from ...utils import NUMPY_MMAP
5-
64
from .base import NipyBaseInterface
75
from ..base import (
86
TraitedSpec,

nipype/interfaces/nipy/preprocess.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import nibabel as nb
55
import numpy as np
66

7-
from ...utils import NUMPY_MMAP
87
from ...utils.filemanip import split_filename, fname_presuffix
98

109
from .base import NipyBaseInterface, have_nipy

nipype/interfaces/nipy/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
import warnings
4+
import numpy as np
45
import nibabel as nb
56

67
from .base import NipyBaseInterface, have_nipy

0 commit comments

Comments
 (0)