Closed aboudev closed 5 years ago
Fix test dataset when only file_list.txt is provided.
file_list.txt
The problem is list += dict will append keys to the list:
list += dict
a = [] a += {'x': 1, 'y': 2} # a will be ['x', 'y'] instead of [{'x': 1, 'y': 2}]
Fix test dataset when only
file_list.txt
is provided.The problem is
list += dict
will append keys to the list: