We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e0bafe + 66f5478 commit dd7fd42Copy full SHA for dd7fd42
vtr_flow/scripts/run_vtr_task.py
@@ -227,11 +227,11 @@ def vtr_command_main(arg_list, prog=None):
227
228
config_files = [find_task_config_file(task_name) for task_name in task_names]
229
configs = []
230
- common_task_prefix = None # common task prefix to shorten task names
+ common_task_prefix = "" # common task prefix to shorten task names
231
for config_file in config_files:
232
config = load_task_config(config_file)
233
configs += [config]
234
- if common_task_prefix is None:
+ if not common_task_prefix:
235
common_task_prefix = config.task_name
236
else:
237
match = SequenceMatcher(
0 commit comments