diff options
author | Tom Scogland <scogland1@llnl.gov> | 2024-01-17 09:23:25 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-17 09:23:25 -0800 |
commit | 0eaab09e8864bb063438d39698fad300e987fc1a (patch) | |
tree | c2e3096ca0e2cf538b1022bdd26fa402ad60cbff /pyproject.toml | |
parent | c508ff1e5fe06b5723c7a31d31757c37cba39013 (diff) | |
download | spack-0eaab09e8864bb063438d39698fad300e987fc1a.tar.gz spack-0eaab09e8864bb063438d39698fad300e987fc1a.tar.bz2 spack-0eaab09e8864bb063438d39698fad300e987fc1a.tar.xz spack-0eaab09e8864bb063438d39698fad300e987fc1a.zip |
fix pyright for package files (#42112)
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index d33b27a99c..0a4d094d1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -171,7 +171,7 @@ ignore_missing_imports = true useLibraryCodeForTypes = true reportMissingImports = true reportWildcardImportFromLibrary = false -include = ['lib/spack'] +include = ['lib/spack', 'var/spack/repos'] ignore = ['lib/spack/external'] extraPaths = ['lib/spack', 'lib/spack/external'] |