rename html merge function

This commit is contained in:
Daniel 2023-12-09 12:48:21 +01:00
parent 873bf73ae8
commit a2f81aa190
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ from packaging import version
CHECKBOX_REGEX = r"^(?P<num>0|[1-9]\d*) (?P<txt1>.*)"
def merge_html_files(in_path: str, out_path: str, title: str):
def merge_html_reports(in_path: str, out_path: str, title: str):
paths = get_html_files(in_path, out_path)
if not paths:
raise RuntimeError(f"Unable to find html files in {in_path}")