No bug - Fix formatting in taskcluster/comm_taskgraph. rs=linting DONTBUILD

--HG--
extra : amend_source : 3dddb39f8df297e645071aa054a962b59c2a40d2
This commit is contained in:
Geoff Lankow 2023-09-08 13:45:48 +12:00
Родитель d47418ee98
Коммит 2abb8cdf9d
3 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -12,7 +12,6 @@ from comm_taskgraph.parameters import register_parameters
class TestCommParameters(unittest.TestCase):
vals = {
"app_version": "app_version",
"backstop": False,

Просмотреть файл

@ -106,7 +106,6 @@ def make_task_description(config, jobs):
@transforms.add
def filter_out_macos_jobs_but_mac_only_locales(config, jobs):
for job in jobs:
build_platform = job["attributes"].get("build_platform")
if build_platform == "linux64-shippable":

Просмотреть файл

@ -52,7 +52,7 @@ def hash_paths_extended(base_path, patterns):
h = hashlib.sha256()
files = []
for (patterns, finder, prefix) in [
for patterns, finder, prefix in [
(gecko_patterns, gecko_finder, None),
(comm_patterns, comm_finder, "comm/"),
]: