diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-02-08 21:38:16 -0800 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2018-09-23 09:36:50 -0700 |
commit | 17a6221cb20e1f07b672d03bf69e3b526a11a03c (patch) | |
tree | 840089b604590e29bed979507a1cd27b6b63dae6 /numpy/core/memmap.py | |
parent | 6ad76178b59372739d1c256ffdb735c89c654637 (diff) | |
download | numpy-17a6221cb20e1f07b672d03bf69e3b526a11a03c.tar.gz |
STY: remove C-like parentheses
Diffstat (limited to 'numpy/core/memmap.py')
-rw-r--r-- | numpy/core/memmap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/memmap.py b/numpy/core/memmap.py index 190de2a77..fd0a4bcd1 100644 --- a/numpy/core/memmap.py +++ b/numpy/core/memmap.py @@ -231,7 +231,7 @@ class memmap(ndarray): if shape is None: bytes = flen - offset - if (bytes % _dbytes): + if bytes % _dbytes: fid.close() raise ValueError("Size of available data is not a " "multiple of the data-type size.") |