Skip to content

Commit

Permalink
Patch to trigger format error
Browse files Browse the repository at this point in the history
  • Loading branch information
tstellar committed Jul 19, 2024
1 parent bf47e71 commit fadc4b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/utils/git/github-automation.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def run(self) -> bool:


def human_readable_size(size, decimal_places=2):
for unit in ["B", "KiB", "MiB", "GiB", "TiB", "PiB"]:
for unit in ['B', "KiB", "MiB", "GiB", "TiB", "PiB"]:
if size < 1024.0 or unit == "PiB":
break
size /= 1024.0
Expand Down

0 comments on commit fadc4b5

Please sign in to comment.