diff options
author | Jonathon Anderson <17242663+blue42u@users.noreply.github.com> | 2023-01-10 06:37:41 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-10 04:37:41 -0800 |
commit | 807b87068a701d431300e90d190dbcf23dea516f (patch) | |
tree | 95e8bfedd85811337680ca3eee0385fce340f62a | |
parent | 6879c35d1c7cdb479d578b219b3cdd4c0139d950 (diff) | |
download | spack-807b87068a701d431300e90d190dbcf23dea516f.tar.gz spack-807b87068a701d431300e90d190dbcf23dea516f.tar.bz2 spack-807b87068a701d431300e90d190dbcf23dea516f.tar.xz spack-807b87068a701d431300e90d190dbcf23dea516f.zip |
style: Run mypy last (#34687)
-rw-r--r-- | lib/spack/spack/cmd/style.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/style.py b/lib/spack/spack/cmd/style.py index 922e81ef8b..42440a1171 100644 --- a/lib/spack/spack/cmd/style.py +++ b/lib/spack/spack/cmd/style.py @@ -40,9 +40,9 @@ exclude_directories = [ #: bootstrapped or present in the environment. tool_names = [ "isort", - "mypy", "black", "flake8", + "mypy", ] #: tools we run in spack style |