diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-05-26 18:05:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-26 18:05:40 -0700 |
commit | 5c1e7ae50d6242ce1f04d1a6482a85f443b6bc1e (patch) | |
tree | 6af15c1b905c3f41ae8ce92285753b82b2e1406a /numpy | |
parent | 7078ec63b55088d353b148f9c2d062ea879af2db (diff) | |
download | numpy-5c1e7ae50d6242ce1f04d1a6482a85f443b6bc1e.tar.gz |
STY: Add blank line
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/ma/core.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index d5ef4461d..42db94cad 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -2877,6 +2877,7 @@ class MaskedArray(ndarray): _recursive_or(af, bf) else: af |= bf + _recursive_or(_data._mask, mask) else: _data._mask = np.logical_or(mask, _data._mask) |