@@ -424,7 +424,7 @@ def __init__(self, *args, **kwargs):
424424class ClangCompiler (Compiler ):
425425
426426 def __init__ (self , * args , ** kwargs ):
427- super (ClangCompiler , self ).__init__ (* args , ** kwargs )
427+ super ().__init__ (* args , ** kwargs )
428428
429429 self .cflags += ['-Wno-unused-result' , '-Wno-unused-variable' ]
430430 if not configuration ['safe-math' ]:
@@ -491,7 +491,7 @@ class AOMPCompiler(Compiler):
491491 """AMD's fork of Clang for OpenMP offloading on both AMD and NVidia cards."""
492492
493493 def __init__ (self , * args , ** kwargs ):
494- super (AOMPCompiler , self ).__init__ (* args , ** kwargs )
494+ super ().__init__ (* args , ** kwargs )
495495
496496 self .cflags += ['-Wno-unused-result' , '-Wno-unused-variable' ]
497497 if not configuration ['safe-math' ]:
@@ -541,7 +541,7 @@ def __lookup_cmds__(self):
541541class PGICompiler (Compiler ):
542542
543543 def __init__ (self , * args , ** kwargs ):
544- super (PGICompiler , self ).__init__ (* args , cpp = True , ** kwargs )
544+ super ().__init__ (* args , cpp = True , ** kwargs )
545545
546546 self .cflags .remove ('-std=c99' )
547547 self .cflags .remove ('-O3' )
@@ -681,7 +681,7 @@ def __lookup_cmds__(self):
681681class IntelCompiler (Compiler ):
682682
683683 def __init__ (self , * args , ** kwargs ):
684- super (IntelCompiler , self ).__init__ (* args , ** kwargs )
684+ super ().__init__ (* args , ** kwargs )
685685
686686 self .cflags .append ("-xHost" )
687687 platform = kwargs .pop ('platform' , configuration ['platform' ])
@@ -728,7 +728,7 @@ def __lookup_cmds__(self):
728728class IntelKNLCompiler (IntelCompiler ):
729729
730730 def __init__ (self , * args , ** kwargs ):
731- super (IntelKNLCompiler , self ).__init__ (* args , ** kwargs )
731+ super ().__init__ (* args , ** kwargs )
732732
733733 self .cflags .append ('-xMIC-AVX512' )
734734
@@ -741,7 +741,7 @@ def __init__(self, *args, **kwargs):
741741class OneapiCompiler (IntelCompiler ):
742742
743743 def __init__ (self , * args , ** kwargs ):
744- super (OneapiCompiler , self ).__init__ (* args , ** kwargs )
744+ super ().__init__ (* args , ** kwargs )
745745
746746 platform = kwargs .pop ('platform' , configuration ['platform' ])
747747 language = kwargs .pop ('language' , configuration ['language' ])
0 commit comments