We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009b38e commit c87fb50Copy full SHA for c87fb50
stratify/__init__.py
@@ -1,11 +1,12 @@
1
from __future__ import absolute_import
2
3
-from ._vinterp import (interpolate, interp_schemes, extrap_schemes,
4
- INTERPOLATE_LINEAR, INTERPOLATE_NEAREST,
+from ._vinterp import (interpolate, interp_schemes, # noqa: F401
+ extrap_schemes, INTERPOLATE_LINEAR, INTERPOLATE_NEAREST,
5
EXTRAPOLATE_NAN, EXTRAPOLATE_NEAREST,
6
- EXTRAPOLATE_LINEAR, PyFuncExtrapolator,
+ EXTRAPOLATE_LINEAR, PyFuncExtrapolator,
7
PyFuncInterpolator)
8
-from ._bounded_vinterp import interpolate as interpolate_conservative
+from ._bounded_vinterp import (interpolate as # noqa: F401
9
+ interpolate_conservative)
10
11
12
__version__ = '0.1a3.dev0'
0 commit comments