Skip to content

Commit 66f5478

Browse files
committed
[Infra]: fix run_vtr_task lint error
Signed-off-by: Seyed Alireza Damghani <[email protected]>
1 parent 110bae4 commit 66f5478

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vtr_flow/scripts/run_vtr_task.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,11 @@ def vtr_command_main(arg_list, prog=None):
227227

228228
config_files = [find_task_config_file(task_name) for task_name in task_names]
229229
configs = []
230-
common_task_prefix = None # common task prefix to shorten task names
230+
common_task_prefix = "" # common task prefix to shorten task names
231231
for config_file in config_files:
232232
config = load_task_config(config_file)
233233
configs += [config]
234-
if common_task_prefix is None:
234+
if not common_task_prefix:
235235
common_task_prefix = config.task_name
236236
else:
237237
match = SequenceMatcher(

0 commit comments

Comments
 (0)