Skip to content

Commit

Permalink
FIX: Missing and unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Dec 19, 2019
1 parent c87c6bf commit fcbaad8
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion nipype/interfaces/cmtk/cmtk.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

from ... import logging
from ...utils.filemanip import split_filename
from ...utils import NUMPY_MMAP

from ..base import (
BaseInterface,
Expand Down
1 change: 1 addition & 0 deletions nipype/interfaces/dipy/anisotropic_power.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-

import numpy as np
import nibabel as nb

from ... import logging
Expand Down
1 change: 0 additions & 1 deletion nipype/interfaces/dipy/simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import nibabel as nb

from ... import logging
from ...utils import NUMPY_MMAP
from ..base import (
traits,
TraitedSpec,
Expand Down
1 change: 1 addition & 0 deletions nipype/interfaces/dipy/tensors.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-

import numpy as np
import nibabel as nb

from ... import logging
Expand Down
2 changes: 0 additions & 2 deletions nipype/interfaces/nipy/model.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
import os

from ...utils import NUMPY_MMAP

from .base import NipyBaseInterface
from ..base import (
TraitedSpec,
Expand Down
1 change: 0 additions & 1 deletion nipype/interfaces/nipy/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import nibabel as nb
import numpy as np

from ...utils import NUMPY_MMAP
from ...utils.filemanip import split_filename, fname_presuffix

from .base import NipyBaseInterface, have_nipy
Expand Down
1 change: 1 addition & 0 deletions nipype/interfaces/nipy/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-

import warnings
import numpy as np
import nibabel as nb

from .base import NipyBaseInterface, have_nipy
Expand Down

0 comments on commit fcbaad8

Please sign in to comment.