From 6cd33f951d62488a75846f8416eaa6a4f27841f6 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Wed, 23 Nov 2022 16:18:03 +0300 Subject: [PATCH] Exclude `stubs/cryptoghraphy` from CI to fix pyright (#9258) Fix pyright --- pyrightconfig.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyrightconfig.json b/pyrightconfig.json index 9bf5e1402..fbf09331b 100644 --- a/pyrightconfig.json +++ b/pyrightconfig.json @@ -5,6 +5,10 @@ "stdlib", "stubs" ], + "exclude": [ + // `cryptography` stubs are outdated and to be removed + "stubs/cryptography" + ], "typeCheckingMode": "basic", "strictListInference": true, "strictDictionaryInference": true,