summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/nag.py
diff options
context:
space:
mode:
authorDima Pasechnik <dima@pasechnik.info>2021-09-28 18:51:08 +0100
committerGitHub <noreply@github.com>2021-09-28 18:51:08 +0100
commit75e051cb1033ae20fb1ecfbf084778203cc595db (patch)
tree4ea57c9d92bc8e41b3c1469518be06267f598ad9 /numpy/distutils/fcompiler/nag.py
parent71dce947a761df4e764b61285167d0b962823662 (diff)
downloadnumpy-75e051cb1033ae20fb1ecfbf084778203cc595db.tar.gz
split the line to please the linter
Diffstat (limited to 'numpy/distutils/fcompiler/nag.py')
-rw-r--r--numpy/distutils/fcompiler/nag.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/nag.py b/numpy/distutils/fcompiler/nag.py
index 8086795ec..fb85c821a 100644
--- a/numpy/distutils/fcompiler/nag.py
+++ b/numpy/distutils/fcompiler/nag.py
@@ -16,7 +16,8 @@ class BaseNAGFCompiler(FCompiler):
def get_flags_linker_so(self):
if sys.platform == 'darwin':
- return ['-unsharedf95', '-Wl,-bundle,-flat_namespace,-undefined,suppress']
+ return ['-unsharedf95',
+ '-Wl,-bundle,-flat_namespace,-undefined,suppress']
return ["-Wl,-shared"]
def get_flags_opt(self):
return ['-O4']