File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,9 @@ def compare_trees(base: Path) -> bool:
2727 data = json .load (f )
2828 build_details = data ["build_details" ]
2929 hashes = data ["hashes" ]
30- tags_seen_by_platform .setdefault (build_details ["platform" ], set ()).add (frozenset (build_details ["abi" ]["flags" ]))
30+ tags_seen_by_platform .setdefault (build_details ["platform" ], set ()).add (
31+ frozenset (build_details ["abi" ]["flags" ])
32+ )
3133
3234 for path , digest in hashes .items ():
3335 if is_ignored (path , build_details ):
@@ -42,9 +44,7 @@ def compare_trees(base: Path) -> bool:
4244
4345 # Did we see enough builds to make a useful comparison?
4446 if len (tags_seen_by_platform ) < 2 :
45- print (
46- "Insufficient platforms (architectures) to compare. Expected >= 2"
47- )
47+ print ("Insufficient platforms (architectures) to compare. Expected >= 2" )
4848 success = False
4949
5050 for platform , tagsets in tags_seen_by_platform .items ():
You can’t perform that action at this time.
0 commit comments