diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 11:32:16 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 11:32:16 -0700 |
commit | 2137be14556a604a06e8b54bbc22d68f7d3cd695 (patch) | |
tree | 30a23b96afac28d0af57877b0031f10d8569373b /python/fatcat_tools/importers/common.py | |
parent | fdbfb8dc55df8c3739feca8c52c017c56b006573 (diff) | |
parent | 6184ecca3a2e072c11482020938566dc8841bf52 (diff) | |
download | fatcat-2137be14556a604a06e8b54bbc22d68f7d3cd695.tar.gz fatcat-2137be14556a604a06e8b54bbc22d68f7d3cd695.zip |
Merge branch 'bnewbold-import-fileset'
Diffstat (limited to 'python/fatcat_tools/importers/common.py')
-rw-r--r-- | python/fatcat_tools/importers/common.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/fatcat_tools/importers/common.py b/python/fatcat_tools/importers/common.py index e936477c..680b4f9c 100644 --- a/python/fatcat_tools/importers/common.py +++ b/python/fatcat_tools/importers/common.py @@ -447,6 +447,10 @@ class EntityImporter: existing.urls = [u for u in existing.urls if u.url not in redundant_urls] return existing + @staticmethod + def generic_fileset_cleanups(existing): + return existing + def match_existing_release_fuzzy(self, release: ReleaseEntity) -> Optional[Tuple[str, str, ReleaseEntity]]: """ This helper function uses fuzzycat (and elasticsearch) to look for |