diff --git a/README.md b/README.md index c93d711f7..b7ff7401f 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,7 @@ file or open a and ask us directly. ## Dataset index + " def main(output_file=None): @@ -127,7 +128,7 @@ def clean_previous_run(output_file: Path) -> None: lines = output_file.read_text().split("\n") with output_file.open("w") as f: for line in lines: - if line.startswith("## Dataset index"): + if line.startswith(DELIMITER): f.write(line + "\n") add_warning(f) break