1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-08 05:27:14 +09:00

Meta: Ignore pyright warning for dynamic BuildVcpkg import

There are now zero pyright warnings.
This commit is contained in:
Timothy Flynn 2025-05-21 16:51:45 -04:00 committed by Andrew Kaster
parent 6a1b3f740c
commit b54f273770
Notes: github-actions[bot] 2025-05-21 22:56:49 +00:00

View file

@ -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()