File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,6 @@ def vtr_command_main(arg_list, prog=None):
225
225
226
226
config_files = [find_task_config_file (task_name ) for task_name in task_names ]
227
227
configs = []
228
- longest_name = 0 # longest task name for use in creating prettier output
229
228
common_task_prefix = None # common task prefix to shorten task names
230
229
for config_file in config_files :
231
230
config = load_task_config (config_file )
@@ -241,10 +240,7 @@ def vtr_command_main(arg_list, prog=None):
241
240
longest_name = len (config .task_name )
242
241
if args .short_task_names :
243
242
configs = shorten_task_names (configs , common_task_prefix )
244
- longest_arch_circuit = find_longest_task_description (
245
- configs
246
- ) # find longest task description for use in creating prettier output
247
- num_failed = run_tasks (args , configs , longest_name , longest_arch_circuit )
243
+ num_failed = run_tasks (args , configs )
248
244
249
245
except CommandError as exception :
250
246
print ("Error: {msg}" .format (msg = exception .msg ))
@@ -265,8 +261,6 @@ def vtr_command_main(arg_list, prog=None):
265
261
def run_tasks (
266
262
args ,
267
263
configs ,
268
- longest_name ,
269
- longest_arch_circuit ,
270
264
):
271
265
"""
272
266
Runs the specified set of tasks (configs)
You can’t perform that action at this time.
0 commit comments