We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c12457f commit c95ee0cCopy full SHA for c95ee0c
1 file changed
scripts/preprocess_benchmark.py
@@ -14,7 +14,9 @@ def main(input_raw_benchmark_path: str = "benchmark", output_path: str = "tfb.js
14
15
# read in all files ending with .md in the input_raw_benchmark_path
16
tasks: list[BenchmarkTask] = []
17
- for file in os.listdir(input_raw_benchmark_path):
+ files = os.listdir(input_raw_benchmark_path)
18
+ files_w_order = sorted(files)
19
+ for file in files_w_order:
20
if not file.endswith(".hs.md"):
21
continue
22
with open(os.path.join(input_raw_benchmark_path, file), "r") as f:
0 commit comments