feat: Sort the batch files in ascending order

This commit is contained in:
Jimmy Fitzpatrick
2025-05-23 16:54:08 +00:00
parent 8dcf6202f1
commit 8d210317be

View File

@@ -100,7 +100,7 @@ def get_batch_files(
if batch.has_file(extension):
batch_file = batch.get_file(extension)
batch_files.append(batch_file.file_path)
return batch_files
return sorted(batch_files)
@log_call