diff options
author | Sachin Krishnan T V <sachu92@gmail.com> | 2022-05-23 19:46:39 +0200 |
---|---|---|
committer | Sachin Krishnan T V <sachu92@gmail.com> | 2022-05-23 19:46:39 +0200 |
commit | b1730f72a647a56a43e109613bf74238fdcb9983 (patch) | |
tree | 92b73a236ca8a910eb8957973ed006a9bf540136 /numpy/testing/_private/utils.py | |
parent | 4e70f09a4f2679a973f36a666ef4249f465af2d4 (diff) | |
download | numpy-b1730f72a647a56a43e109613bf74238fdcb9983.tar.gz |
Break lines in comments to follow line length limits
Diffstat (limited to 'numpy/testing/_private/utils.py')
-rw-r--r-- | numpy/testing/_private/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py index c44815d8c..e85eda3d7 100644 --- a/numpy/testing/_private/utils.py +++ b/numpy/testing/_private/utils.py @@ -1517,9 +1517,9 @@ def assert_allclose(actual, desired, rtol=1e-7, atol=0, equal_nan=True, Notes ----- - When one of ``actual`` and ``desired`` is a scalar and the other is array_like, - the function checks that each element of the array_like object is equal to - the scalar. + When one of ``actual`` and ``desired`` is a scalar and the other is + array_like, the function checks that each element of the array_like + object is equal to the scalar. Examples -------- |