mirror of
https://github.com/pirate/ArchiveBox.git
synced 2025-08-23 22:53:00 +02:00
remove unused argument
This commit is contained in:
@@ -52,10 +52,9 @@ def parse_html_main_index(out_dir: Path=OUTPUT_DIR) -> Iterator[str]:
|
||||
|
||||
def generate_index_from_links(links: List[Link], with_headers: bool):
|
||||
if with_headers:
|
||||
output = main_index_template(links, True)
|
||||
output = main_index_template(links)
|
||||
else:
|
||||
output = main_index_template(links, True, MINIMAL_INDEX_TEMPLATE)
|
||||
return output
|
||||
output = main_index_template(links, template=MINIMAL_INDEX_TEMPLATE)
|
||||
|
||||
@enforce_types
|
||||
def main_index_template(links: List[Link], template: str=MAIN_INDEX_TEMPLATE) -> str:
|
||||
|
Reference in New Issue
Block a user