aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-03-23 18:54:42 -0700
committerBryan Newbold <bnewbold@robocracy.org>2022-03-23 18:54:42 -0700
commit929f6d1020362a8065d1e0c95d2ee67c88f89b33 (patch)
tree17a792818843dfc189b7afc8ea41bb0384a74bc8 /python/fatcat_tools
parent515b5ecc6e75aae834958d74883426230532f10d (diff)
downloadfatcat-929f6d1020362a8065d1e0c95d2ee67c88f89b33.tar.gz
fatcat-929f6d1020362a8065d1e0c95d2ee67c88f89b33.zip
fix typo in fileset comparison helper
Diffstat (limited to 'python/fatcat_tools')
-rw-r--r--python/fatcat_tools/importers/common.py2
1 files changed, 1 insertions, 1 deletions
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