diff options
author | Thomas A Caswell <tcaswell@gmail.com> | 2016-02-05 12:09:29 -0500 |
---|---|---|
committer | Thomas A Caswell <tcaswell@gmail.com> | 2016-02-07 14:26:55 -0500 |
commit | 010d17ee8167196ea90c24c57b4ea34badfc11ae (patch) | |
tree | df4dccbbd949011742e0c1b186cce882d1459b78 /numpy/core/fromnumeric.py | |
parent | 75ae820c74e927679af82ef634a8f3ef0f97503f (diff) | |
download | numpy-010d17ee8167196ea90c24c57b4ea34badfc11ae.tar.gz |
STY: pep8 only
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index bb89adbe1..1c97b7c4f 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -3059,8 +3059,7 @@ def std(a, axis=None, dtype=None, out=None, ddof=0, keepdims=np._NoValue): **kwargs) -def var(a, axis=None, dtype=None, out=None, ddof=0, - keepdims=np._NoValue): +def var(a, axis=None, dtype=None, out=None, ddof=0, keepdims=np._NoValue): """ Compute the variance along the specified axis. @@ -3174,4 +3173,4 @@ def var(a, axis=None, dtype=None, out=None, ddof=0, pass return _methods._var(a, axis=axis, dtype=dtype, out=out, ddof=ddof, - **kwargs) + **kwargs) |