summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_random.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-03-17 09:51:26 -0600
committerGitHub <noreply@github.com>2021-03-17 09:51:26 -0600
commite7df4a4e2f0e21f110b177241f32c84548a95bd4 (patch)
tree01a0b4357b893d3e6704e049d7283ad14d5b257b /numpy/random/tests/test_random.py
parent2d975a771b88bcb4d049bbb3ea5f917694ec3524 (diff)
downloadnumpy-e7df4a4e2f0e21f110b177241f32c84548a95bd4.tar.gz
STY: Break long line.
Diffstat (limited to 'numpy/random/tests/test_random.py')
-rw-r--r--numpy/random/tests/test_random.py4
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: