Skip to content

Commit fadc4b5

Browse files
committed
Patch to trigger format error
1 parent bf47e71 commit fadc4b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/git/github-automation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def run(self) -> bool:
9696

9797

9898
def human_readable_size(size, decimal_places=2):
99-
for unit in ["B", "KiB", "MiB", "GiB", "TiB", "PiB"]:
99+
for unit in ['B', "KiB", "MiB", "GiB", "TiB", "PiB"]:
100100
if size < 1024.0 or unit == "PiB":
101101
break
102102
size /= 1024.0

0 commit comments

Comments
 (0)