From 6fb371455bc36a176bc58256088b810071413ab6 Mon Sep 17 00:00:00 2001 From: Slipstreamm Date: Fri, 13 Jun 2025 00:12:37 -0600 Subject: [PATCH] Update exclusion patterns in pyrightconfig.json to include virtual environments --- pyrightconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrightconfig.json b/pyrightconfig.json index 084e35e..19db776 100644 --- a/pyrightconfig.json +++ b/pyrightconfig.json @@ -1,6 +1,6 @@ { "include": ["."], - "exclude": ["**/node_modules", "**/__pycache__", "**/.venv", "**/.git", "**/dist", "**/build", "**/tests/**", "tavilytool.py"], + "exclude": ["**/node_modules", "**/__pycache__", "**/.venv", "**/venv", "**/.git", "**/dist", "**/build", "**/tests/**", "tavilytool.py"], "ignore": [], "reportMissingImports": true, "reportMissingTypeStubs": false,