Skip to content

Commit 4b3955e

Browse files
style: pre-commit.ci auto fixes [...]
1 parent 7ed60d4 commit 4b3955e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

taskcluster/fxci_config_taskgraph/util/integration.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
from typing import Any
77

88
import requests
9-
from taskgraph.util.taskcluster import get_ancestors
10-
from taskgraph.util.taskcluster import logging
9+
from taskgraph.util.taskcluster import get_ancestors, logging
1110

1211
FIREFOXCI_ROOT_URL = "https://firefox-ci-tc.services.mozilla.com"
1312
STAGING_ROOT_URL = "https://stage.taskcluster.nonprod.cloudops.mozgcp.net"
@@ -20,7 +19,9 @@ def get_taskcluster_client(service: str):
2019

2120

2221
@cache
23-
def find_tasks(decision_index_path: str, include_deps: bool = False) -> list[dict[str, Any]]:
22+
def find_tasks(
23+
decision_index_path: str, include_deps: bool = False
24+
) -> list[dict[str, Any]]:
2425
"""Find tasks targeted by the Decision task pointed to by `decision_index_path`."""
2526
queue = get_taskcluster_client("queue")
2627
index = get_taskcluster_client("index")
@@ -56,6 +57,7 @@ def find_tasks(decision_index_path: str, include_deps: bool = False) -> list[dic
5657
logging.info("including deps")
5758
# TODO: remove hack
5859
import os
60+
5961
orig = os.environ["TASKCLUSTER_ROOT_URL"]
6062
os.environ["TASKCLUSTER_ROOT_URL"] = FIREFOXCI_ROOT_URL
6163
logging.info(f"fetching ancestors for {task['task_id']}")

0 commit comments

Comments
 (0)