diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-03-17 09:51:26 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 09:51:26 -0600 |
commit | e7df4a4e2f0e21f110b177241f32c84548a95bd4 (patch) | |
tree | 01a0b4357b893d3e6704e049d7283ad14d5b257b /numpy/random/tests/test_random.py | |
parent | 2d975a771b88bcb4d049bbb3ea5f917694ec3524 (diff) | |
download | numpy-e7df4a4e2f0e21f110b177241f32c84548a95bd4.tar.gz |
STY: Break long line.
Diffstat (limited to 'numpy/random/tests/test_random.py')
-rw-r--r-- | numpy/random/tests/test_random.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/random/tests/test_random.py b/numpy/random/tests/test_random.py index 2b3b65c19..8ec73519a 100644 --- a/numpy/random/tests/test_random.py +++ b/numpy/random/tests/test_random.py @@ -529,7 +529,9 @@ class TestRandomDist: class MyArr(np.ndarray): pass - items = [None, np.array([3]), np.float64(3), np.array(10), np.float64(7)] + items = [None, np.array([3]), np.float64(3), np.array(10), + np.float64(7) + ] arr = np.array(items, dtype=object) item_ids = {id(i) for i in items} if use_array_like: |