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