summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_random.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-03-17 09:58:08 -0600
committerGitHub <noreply@github.com>2021-03-17 09:58:08 -0600
commit14583921acf39ccf1f40ceda40af325adeba81ad (patch)
treeed344a29ca2fd80483a7a326d9d8c62d1b79f5b1 /numpy/random/tests/test_random.py
parente7df4a4e2f0e21f110b177241f32c84548a95bd4 (diff)
downloadnumpy-14583921acf39ccf1f40ceda40af325adeba81ad.tar.gz
STY: Fix hanging indentation.
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: