diff options
author | Stephan Hoyer <shoyer@google.com> | 2019-06-11 21:41:38 -0400 |
---|---|---|
committer | Stephan Hoyer <shoyer@google.com> | 2019-06-11 21:41:38 -0400 |
commit | ebb0c5d3e4fc3835c1b71434845f03ae7bbaae0c (patch) | |
tree | 606f4fece127f64c43963342a60052c683f595b2 /numpy/lib/histograms.py | |
parent | 080bf0064b64c3c95499473101c297c3d10e5348 (diff) | |
download | numpy-ebb0c5d3e4fc3835c1b71434845f03ae7bbaae0c.tar.gz |
MAINT: spelling
Diffstat (limited to 'numpy/lib/histograms.py')
-rw-r--r-- | numpy/lib/histograms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/histograms.py b/numpy/lib/histograms.py index 478fbc783..8474bd5d3 100644 --- a/numpy/lib/histograms.py +++ b/numpy/lib/histograms.py @@ -927,7 +927,7 @@ def _histogramdd_dispatcher(sample, bins=None, range=None, normed=None, yield sample else: yield from sample - with contextlib.supress(TypeError): + with contextlib.suppress(TypeError): yield from bins yield weights |