From c5f04ec5a447d1371ac6fcce9c8bfdbadc9425c6 Mon Sep 17 00:00:00 2001 From: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> Date: Sat, 25 Jan 2025 09:51:50 +0000 Subject: [PATCH] :rotating_light: disable pyright overload overlapping check --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 145a9bada..13b0e2272 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -137,6 +137,11 @@ pythonVersion = "3.9" pythonPlatform = "All" defineConstant = { PYDANTIC_V2 = true } +executionEnvironments = [ + # disable overload check for generated version codes + { root = "githubkit/versions/", reportOverlappingOverload = false }, +] + exclude = ["codegen/**"] [tool.codegen]