From 5e9b3099c6217ae2aeecb26134ee2f8e8faf7c99 Mon Sep 17 00:00:00 2001 From: Cristian Vargas Date: Tue, 8 Sep 2020 09:49:30 -0500 Subject: [PATCH] Update fix_duplicate_links_in_index docstring Co-authored-by: Nick Sweeting --- archivebox/index/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/index/__init__.py b/archivebox/index/__init__.py index c2c774c2..1bc91ddb 100644 --- a/archivebox/index/__init__.py +++ b/archivebox/index/__init__.py @@ -302,7 +302,7 @@ def parse_links_from_source(source_path: str, root_url: Optional[str]=None) -> T @enforce_types def fix_duplicate_links_in_index(snapshots: QuerySet, links: Iterable[Link]) -> Iterable[Link]: """ - Look for urls in the index, and merge them too + Given a list of in-memory Links, dedupe and merge them with any conflicting Snapshots in the DB. """ unique_urls: OrderedDict[str, Link] = OrderedDict()