From b54f273770b177ce088bc044fb9f52fc0ba7e8b0 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 21 May 2025 16:51:45 -0400 Subject: [PATCH] Meta: Ignore pyright warning for dynamic BuildVcpkg import There are now zero pyright warnings. --- Meta/ladybird.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/ladybird.py b/Meta/ladybird.py index 45cde958417..b2c13fc030f 100755 --- a/Meta/ladybird.py +++ b/Meta/ladybird.py @@ -318,7 +318,7 @@ def configure_build_env(preset: str, cc: str, cxx: str) -> tuple[Path, Path, lis def build_vcpkg(): sys.path.append(str(Path(__file__).parent.joinpath("..", "Toolchain"))) # FIXME: Rename main() in BuildVcpkg.py to build_vcpkg() and call that from the scripts __main__ - from BuildVcpkg import main as build_vcpkg + from BuildVcpkg import main as build_vcpkg # pyright: ignore build_vcpkg()