Skip to content

Commit ad22ecb

Browse files
author
MohamedElgammal
committed
fix formatting
1 parent 0ae0cb3 commit ad22ecb

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

vtr_flow/scripts/python_libs/vtr/task.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def find_longest_task_description(configs):
293293

294294

295295
# pylint: disable=too-many-branches
296-
def create_jobs(args, configs, longest_name=0, longest_arch_circuit=0, after_run=False):
296+
def create_jobs(args, configs, after_run=False):
297297
"""
298298
Create the jobs to be executed depending on the configs.
299299
"""
@@ -409,8 +409,6 @@ def create_jobs(args, configs, longest_name=0, longest_arch_circuit=0, after_run
409409
qor_parse_command,
410410
work_dir,
411411
run_dir,
412-
longest_name,
413-
longest_arch_circuit,
414412
golden_results,
415413
)
416414
)
@@ -428,8 +426,6 @@ def create_jobs(args, configs, longest_name=0, longest_arch_circuit=0, after_run
428426
qor_parse_command,
429427
work_dir,
430428
run_dir,
431-
longest_name,
432-
longest_arch_circuit,
433429
golden_results,
434430
)
435431
)
@@ -449,8 +445,6 @@ def create_job(
449445
qor_parse_command,
450446
work_dir,
451447
run_dir,
452-
longest_name,
453-
longest_arch_circuit,
454448
golden_results,
455449
):
456450
"""

vtr_flow/scripts/run_vtr_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def run_tasks(
274274
start = datetime.now()
275275
num_failed = 0
276276

277-
jobs = create_jobs(args, configs, longest_name, longest_arch_circuit)
277+
jobs = create_jobs(args, configs)
278278

279279
run_dirs = {}
280280
for config in configs:

0 commit comments

Comments
 (0)