From 4dc8175022559c0f533dabdb146637ea28cd25f3 Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Fri, 11 Jul 2025 21:47:34 +0530 Subject: [PATCH] ci: revert to non-relative import in export script Potentially fixes #37999 Signed-off-by: Mukilan Thiyagarajan --- pyproject.toml | 1 + python/wpt/export.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9bb977e068d..d90c732237e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ search-path = [ "tests/wpt/tests/tools/wptrunner", "tests/wpt/tests/tools/wptserve", "python/mach", + "python/wpt", ] project-includes = [ "python/wpt/**/*.py", diff --git a/python/wpt/export.py b/python/wpt/export.py index ebec24464a0..6f0d511063a 100755 --- a/python/wpt/export.py +++ b/python/wpt/export.py @@ -17,7 +17,7 @@ import logging import os import sys -from .exporter import WPTSync +from exporter import WPTSync def main() -> int: