qa : flake8 issues

This commit is contained in:
alalazo 2016-06-26 22:00:10 +02:00
parent 11863d2de3
commit 9de0503188
2 changed files with 21 additions and 17 deletions

View File

@ -1,8 +1,11 @@
import os import os
from spack import * from spack import *
class Adios(Package): class Adios(Package):
"""The Adaptable IO System (ADIOS) provides a simple, """
The Adaptable IO System (ADIOS) provides a simple,
flexible way for scientists to describe the flexible way for scientists to describe the
data in their code that may need to be written, data in their code that may need to be written,
read, or processed outside of the running simulation read, or processed outside of the running simulation

View File

@ -1,8 +1,9 @@
import os
from spack import * from spack import *
class Mxml(Package): class Mxml(Package):
"""Mini-XML is a small XML library that you can use to read and write XML """
Mini-XML is a small XML library that you can use to read and write XML
and XML-like data files in your application without requiring large and XML-like data files in your application without requiring large
non-standard libraries non-standard libraries
""" """
@ -16,11 +17,11 @@ class Mxml(Package):
version('2.6', '68977789ae64985dddbd1a1a1652642e') version('2.6', '68977789ae64985dddbd1a1a1652642e')
version('2.5', 'f706377fba630b39fa02fd63642b17e5') version('2.5', 'f706377fba630b39fa02fd63642b17e5')
# module swap PrgEnv-intel PrgEnv-$COMP (Can use whatever compiler you want to use) # module swap PrgEnv-intel PrgEnv-$COMP
# (Can use whatever compiler you want to use)
# Case statement to change CC and CXX flags # Case statement to change CC and CXX flags
def install(self, spec, prefix): def install(self, spec, prefix):
configure('--prefix=%s' % prefix, "--disable-shared", 'CFLAGS=-static') configure('--prefix=%s' % prefix, "--disable-shared", 'CFLAGS=-static')
make() make()
make("install") make("install")