flake8: fix warnings (#5759)

This commit is contained in:
Satish Balay 2017-10-13 16:16:58 -05:00 committed by Christoph Junghans
parent 6c3184820a
commit 6fcfc3bd5a
3 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@
# License along with this program; if not, write to the Free Software # License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
############################################################################## ##############################################################################
from spack import *
import re import re
from spack import *
class Mfem(Package): class Mfem(Package):

View File

@ -22,9 +22,9 @@
# License along with this program; if not, write to the Free Software # License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
############################################################################## ##############################################################################
from spack import *
import glob import glob
import os import os
from spack import *
class SuperluDist(Package): class SuperluDist(Package):

View File

@ -22,10 +22,10 @@
# License along with this program; if not, write to the Free Software # License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
############################################################################## ##############################################################################
from spack import *
from spack.operating_systems.mac_os import macOS_version
import os import os
import sys import sys
from spack import *
from spack.operating_systems.mac_os import macOS_version
# Trilinos is complicated to build, as an inspiration a couple of links to # Trilinos is complicated to build, as an inspiration a couple of links to
# other repositories which build it: # other repositories which build it: