diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-06-16 17:13:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-16 17:13:01 -0700 |
commit | f351e011d1f91372492651829b9dd82d81cd191d (patch) | |
tree | c373b0123643e240bb4da3755e870bb9bdca32e9 /.flake8 | |
parent | 9ee6cbfb40582d6138a32bc0c3cd0452830461b2 (diff) | |
parent | a5aa159d9d0fc97cc9ae882e7325f19438ce597a (diff) | |
download | spack-f351e011d1f91372492651829b9dd82d81cd191d.tar.gz spack-f351e011d1f91372492651829b9dd82d81cd191d.tar.bz2 spack-f351e011d1f91372492651829b9dd82d81cd191d.tar.xz spack-f351e011d1f91372492651829b9dd82d81cd191d.zip |
Merge pull request #1068 from epfl-scitas/fixes/flake8_no_f405
Flake8: ignore F405
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,5 +19,5 @@ # - F999: name name be undefined or undefined from star imports. # [flake8] -ignore = E221,E241,E731,F403,F821,F999 +ignore = E221,E241,E731,F403,F821,F999,F405 max-line-length = 79 |