diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-10-22 11:32:08 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-22 11:32:08 -0600 |
commit | 9ef15659f5003121605ba5096405276dcdf54254 (patch) | |
tree | b8bd2bcb13cc7c38174b238176324f62c40e68fe /numpy/random/setup.py | |
parent | 2c5e708f7a621bb714fc24c26e33f68afff45637 (diff) | |
download | numpy-9ef15659f5003121605ba5096405276dcdf54254.tar.gz |
STY: Fix indentation to follow PEP8
Diffstat (limited to 'numpy/random/setup.py')
-rw-r--r-- | numpy/random/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py index 88274bdef..3f3b773a4 100644 --- a/numpy/random/setup.py +++ b/numpy/random/setup.py @@ -35,8 +35,8 @@ def configuration(parent_package='',top_path=None): defs = [('_LARGE_FILES', None)] else: defs = [('_FILE_OFFSET_BITS', '64'), - ('_LARGEFILE_SOURCE', '1'), - ('_LARGEFILE64_SOURCE', '1')] + ('_LARGEFILE_SOURCE', '1'), + ('_LARGEFILE64_SOURCE', '1')] if needs_mingw_ftime_workaround(): defs.append(("NPY_NEEDS_MINGW_TIME_WORKAROUND", None)) |