Skip to content

Commit 20b87b6

Browse files
committed
re-black
1 parent e0735a4 commit 20b87b6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Tools/coinstall-check/compare.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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():

0 commit comments

Comments
 (0)