Skip to content

Commit c87fb50

Browse files
author
Carwyn Pelley
committed
TEST: Flake8 F401 error ignore
1 parent 009b38e commit c87fb50

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

stratify/__init__.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
from __future__ import absolute_import
22

3-
from ._vinterp import (interpolate, interp_schemes, extrap_schemes,
4-
INTERPOLATE_LINEAR, INTERPOLATE_NEAREST,
3+
from ._vinterp import (interpolate, interp_schemes, # noqa: F401
4+
extrap_schemes, INTERPOLATE_LINEAR, INTERPOLATE_NEAREST,
55
EXTRAPOLATE_NAN, EXTRAPOLATE_NEAREST,
6-
EXTRAPOLATE_LINEAR, PyFuncExtrapolator,
6+
EXTRAPOLATE_LINEAR, PyFuncExtrapolator,
77
PyFuncInterpolator)
8-
from ._bounded_vinterp import interpolate as interpolate_conservative
8+
from ._bounded_vinterp import (interpolate as # noqa: F401
9+
interpolate_conservative)
910

1011

1112
__version__ = '0.1a3.dev0'

0 commit comments

Comments
 (0)