commit c903ab15c41e23804545dce3107c274c579584eb
parent 251f05311e40db57f5991c2dd7c3a6df4bf75c96
Author: Lando <lando@lando.test>
Date: Fri, 9 Jan 2026 03:27:00 +0000
Bug 2002002: apply code formatting via Lando
# ignore-this-changeset
Diffstat:
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/python/mozbuild/mozbuild/util.py b/python/mozbuild/mozbuild/util.py
@@ -1398,7 +1398,7 @@ def get_taskcluster_client(service: str, block_proxy=False):
if "TASKCLUSTER_PROXY_URL" in os.environ and not block_proxy:
options = {"rootUrl": os.environ["TASKCLUSTER_PROXY_URL"].rstrip("/")}
else:
- options = taskcluster.optionsFromEnvironment(
- {"rootUrl": get_root_url(block_proxy)}
- )
+ options = taskcluster.optionsFromEnvironment({
+ "rootUrl": get_root_url(block_proxy)
+ })
return getattr(taskcluster, service[0].upper() + service[1:])(options)
diff --git a/tools/tryselect/selectors/fuzzy.py b/tools/tryselect/selectors/fuzzy.py
@@ -160,7 +160,6 @@ def run(
all_tasks = tg.tasks
if not full and not disable_target_task_filter:
-
all_tasks = {
task_name: task
for task_name, task in all_tasks.items()