Fix python format warnings (#25841)

This commit is contained in:
Joel Challis
2025-12-01 01:17:13 +00:00
committed by GitHub
parent 2cac8b587f
commit e2bf515df4
3 changed files with 6 additions and 6 deletions

View File

@@ -129,7 +129,7 @@ def _render_image_metadata(metadata):
px = size["width"] * size["height"]
# FIXME: May need need more chars here too
deltas.append(f"// Frame {i:3d}: ({l:3d}, {t:3d}) - ({r:3d}, {b:3d}) >> {delta_px:4d}/{px:4d} pixels ({100*delta_px/px:.2f}%)")
deltas.append(f"// Frame {i:3d}: ({l:3d}, {t:3d}) - ({r:3d}, {b:3d}) >> {delta_px:4d}/{px:4d} pixels ({100 * delta_px / px:.2f}%)")
if deltas:
lines.append("// Areas on delta frames")