summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_random.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/random/tests/test_random.py')
-rw-r--r--numpy/random/tests/test_random.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/random/tests/test_random.py b/numpy/random/tests/test_random.py
index 8ec73519a..6a584a511 100644
--- a/numpy/random/tests/test_random.py
+++ b/numpy/random/tests/test_random.py
@@ -529,9 +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: