Skip to content
Snippets Groups Projects
Commit d7847ff7 authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Use just one flake8 file; mark package.py files to avoid E501 w/url.

parent 2aa4387e
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
# E241: multiple spaces after ‘,’ # E241: multiple spaces after ‘,’
# F403: disable wildcard import # F403: disable wildcard import
# F821: undefined name (needed for build commands) # 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 max-line-length = 79
# -*- conf -*-
[flake8]
# Descriptions of ignored checks:
#
# E221: multiple spaces before operator
# E241: multiple spaces after ‘,’
# F403: disable wildcard import
#
ignore = E221,E241,F403
max-line-length = 79
...@@ -24,7 +24,7 @@ class Imagemagick(Package): ...@@ -24,7 +24,7 @@ class Imagemagick(Package):
version( version(
'6.8.9-10', '6.8.9-10',
'aa050bf9785e571c956c111377bbf57c', '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('jpeg')
depends_on('libtool') depends_on('libtool')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment