File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11import inspect
22import itertools
33
4- from . import _funcs_impl , _reductions
4+ from . import _funcs_impl , _reductions_impl
55from ._normalizations import normalizer
66
77# _funcs_impl.py contains functions which mimic NumPy's eponymous equivalents,
@@ -27,7 +27,7 @@ def is_public_function(f):
2727
2828# decorate implementer functions with argument normalizers and export to the top namespace
2929for name , func in itertools .chain (
30- _public_functions (_funcs_impl ), _public_functions (_reductions )
30+ _public_functions (_funcs_impl ), _public_functions (_reductions_impl )
3131):
3232 if name in ["percentile" , "quantile" , "median" ]:
3333 decorated = normalizer (func , promote_scalar_result = True )
File renamed without changes.
You can’t perform that action at this time.
0 commit comments