Hi,

I've been running some reports for many live results and I get the same report for all of them, has anyone experienced this?

this is my code:


list_of_files = glob("...\live\*")# * 

result = []

for folder in list_of_files:
    for file in os.listdir(folder):
        if len(file)==17:
            live_results = os.path.join(folder, file) 
            report_dir = folder + '\\report.html'
            command = 'lean report --live-results {0} --report-destination {1} --strategy-name {2}'.format(live_results, report_dir, "FlashTick").split()
            command = [x for x in command if x]
            result = subprocess.run(command, shell = True, text = True)