From 929f6d1020362a8065d1e0c95d2ee67c88f89b33 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 23 Mar 2022 18:54:42 -0700 Subject: fix typo in fileset comparison helper --- python/fatcat_tools/importers/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/fatcat_tools/importers') diff --git a/python/fatcat_tools/importers/common.py b/python/fatcat_tools/importers/common.py index 475cb97a..2136d1da 100644 --- a/python/fatcat_tools/importers/common.py +++ b/python/fatcat_tools/importers/common.py @@ -926,4 +926,4 @@ def filesets_very_similar(a: FilesetEntity, b: FilesetEntity) -> bool: """ a_hashes = set([f.sha1 for f in a.manifest]) b_hashes = set([f.sha1 for f in b.manifest]) - return a == b + return a_hashes == b_hashes -- cgit v1.2.3