diff options
| author | Joel Challis <git@zvecr.com> | 2025-12-01 01:17:13 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-01 12:17:13 +1100 |
| commit | e2bf515df4c51c4d2e3b442d23e52d6d43f7f726 (patch) | |
| tree | 68d78a60ffe6d5c784d92bc2433b4029f2c90223 /lib/python/qmk/painter.py | |
| parent | 2cac8b587fdef6526330c80799e0a190b75bb2fd (diff) | |
Fix python format warnings (#25841)
Diffstat (limited to 'lib/python/qmk/painter.py')
| -rw-r--r-- | lib/python/qmk/painter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/painter.py b/lib/python/qmk/painter.py index ed0372c163..1a07f7442c 100644 --- a/lib/python/qmk/painter.py +++ b/lib/python/qmk/painter.py | |||
| @@ -129,7 +129,7 @@ def _render_image_metadata(metadata): | |||
| 129 | px = size["width"] * size["height"] | 129 | px = size["width"] * size["height"] |
| 130 | 130 | ||
| 131 | # FIXME: May need need more chars here too | 131 | # FIXME: May need need more chars here too |
| 132 | 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}%)") | 132 | 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}%)") |
| 133 | 133 | ||
| 134 | if deltas: | 134 | if deltas: |
| 135 | lines.append("// Areas on delta frames") | 135 | lines.append("// Areas on delta frames") |
