summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorh6197627 <44726212+h6197627@users.noreply.github.com>2021-04-12 01:34:35 +0300
committerGitHub <noreply@github.com>2021-04-12 01:34:35 +0300
commitbd7b3993c358ad880c0dc80e1661bd02e9388f4d (patch)
treeb2a98f3a508357d13c55ed05da2f5004170ab5f4
parent0d3e433862105579a80b791d76f921dcc261928b (diff)
downloadnumpy-bd7b3993c358ad880c0dc80e1661bd02e9388f4d.tar.gz
STY: lint line length
-rw-r--r--numpy/distutils/fcompiler/intel.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py
index e97cadbb1..f97c5b348 100644
--- a/numpy/distutils/fcompiler/intel.py
+++ b/numpy/distutils/fcompiler/intel.py
@@ -59,7 +59,8 @@ class IntelFCompiler(BaseIntelFCompiler):
def get_flags_opt(self): # Scipy test failures with -O2
v = self.get_version()
mpopt = 'openmp' if v and v < '15' else 'qopenmp'
- return ['-fp-model', 'strict', '-O1', '-assume', 'minus0', '-{}'.format(mpopt)]
+ return ['-fp-model', 'strict', '-O1',
+ '-assume', 'minus0', '-{}'.format(mpopt)]
def get_flags_arch(self):
return []