Split scipy.ndimage & spatial into different lines

This improves the readability of the import code and is in line with
PEP8 recommendations.
This commit is contained in:
Juan Nunez-Iglesias
2015-06-11 11:36:48 +10:00
parent 0a8fc08ec1
commit 56d62b39be
+2 -1
View File
@@ -2,7 +2,8 @@ import six
import math
import warnings
import numpy as np
from scipy import ndimage as ndi, spatial
from scipy import spatial
from scipy import ndimage as ndi
from .._shared.utils import get_bound_method_class, safe_as_int
from ..util import img_as_float