Skip to content

Commit

Permalink
Fix rel_sieve (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
robojumper authored Sep 13, 2024
1 parent 3b8392a commit f0fe35f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/rel_sieve.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'):
Expand Down

0 comments on commit f0fe35f

Please sign in to comment.