commit 5f6067b46ab40e65597e759448eb613e58091920
parent 205671fc1255d75b87ef340aed5a600c21e359d3
Author: Sylvestre Ledru <sylvestre@debian.org>
Date: Mon, 6 Oct 2025 20:50:33 +0000
Bug 1992550 - ride along: fix the import order r=linter-reviewers,ahal DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D267508
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/testing/skipfails.py b/testing/skipfails.py
@@ -37,6 +37,7 @@ from mozci.push import Push
from mozci.task import Optional, TestTask
from mozci.util.taskcluster import get_task
from mozinfo.platforminfo import PlatformInfo
+from taskcluster.exceptions import TaskclusterRestFailure
from wpt_path_utils import (
WPT_META0,
WPT_META0_CLASSIC,
@@ -44,8 +45,6 @@ from wpt_path_utils import (
)
from yaml import load
-from taskcluster.exceptions import TaskclusterRestFailure
-
# Use faster LibYAML, if installed: https://pyyaml.org/wiki/PyYAMLDocumentation
try:
from yaml import CLoader as Loader