Andrea Maldonado commited on
Commit
da993ec
·
1 Parent(s): ad6c813

Sorts for replicability

Browse files
Files changed (1) hide show
  1. gedi/benchmark.py +1 -1
gedi/benchmark.py CHANGED
@@ -34,7 +34,7 @@ class BenchmarkTest:
34
  event_logs = [""]
35
  else:
36
  try:
37
- event_logs =[filename for filename in os.listdir(log_path) if filename.endswith(".xes")]
38
  except FileNotFoundError:
39
  print(f" FAILED: Cannot find {params[INPUT_PATH]}" )
40
  return
 
34
  event_logs = [""]
35
  else:
36
  try:
37
+ event_logs =sorted([filename for filename in os.listdir(log_path) if filename.endswith(".xes")])
38
  except FileNotFoundError:
39
  print(f" FAILED: Cannot find {params[INPUT_PATH]}" )
40
  return