From 0eaab09e8864bb063438d39698fad300e987fc1a Mon Sep 17 00:00:00 2001 From: Tom Scogland Date: Wed, 17 Jan 2024 09:23:25 -0800 Subject: [PATCH] fix pyright for package files (#42112) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']