Skip to content

Commit

Permalink
Use just one flake8 file; mark package.py files to avoid E501 w/url.
Browse files Browse the repository at this point in the history
  • Loading branch information
tgamblin committed May 11, 2016
1 parent 2aa4387 commit d7847ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
3 changes: 2 additions & 1 deletion share/spack/qa/flake8-packages → .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# E241: multiple spaces after ‘,’
# F403: disable wildcard import
# F821: undefined name (needed for build commands)
# F999: Undefined undefined name (needed for build commands)
#
ignore = E221,E241,F403,F821
ignore = E221,E241,F403,F821,F999
max-line-length = 79
10 changes: 0 additions & 10 deletions share/spack/qa/flake8-framework

This file was deleted.

2 changes: 1 addition & 1 deletion var/spack/repos/builtin/packages/ImageMagick/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Imagemagick(Package):
version(
'6.8.9-10',
'aa050bf9785e571c956c111377bbf57c',
url="http://sourceforge.net/projects/imagemagick/files/old-sources/6.x/6.8/ImageMagick-6.8.9-10.tar.gz/download") # NOQA: ignore=E501
url="http://sourceforge.net/projects/imagemagick/files/old-sources/6.x/6.8/ImageMagick-6.8.9-10.tar.gz/download")

depends_on('jpeg')
depends_on('libtool')
Expand Down

0 comments on commit d7847ff

Please sign in to comment.