Fix rel_sieve (#26)

This commit is contained in:
robojumper
2024-09-13 20:57:24 +02:00
committed by GitHub
parent 3b8392aeac
commit f0fe35f6a5
+1 -1
View File
@@ -61,7 +61,7 @@ def main():
with open('./objdiff.json') as f:
objdiff = json.load(f)
for unit in objdiff["units"]:
if unit.get("complete", False):
if unit.get("metadata", {}).get("complete", False):
matched_names.add(unit["name"].split('/')[-1])
data = {}
for folder in os.listdir('./build/SOUE01'):