Allowed to skip subfolders from input lists by commenting them out

This commit is contained in:
Trung Nguyen
2024-08-05 16:28:23 -05:00
parent 6671e3b410
commit c6eb1fb9dd

View File

@ -926,6 +926,8 @@ if __name__ == "__main__":
f.close()
for line in all_subfolders:
if len(line) > 0:
if line[0] == '#':
continue
folder = line.split()[0]
example_subfolders.append(folder)
num_inputscripts += int(line.split()[1])