Skip to content

Commit d8b78bc

Browse files
committed
formatting
1 parent 9689516 commit d8b78bc

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

‎image-redraw/src/image_redraw/workflow.py‎

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
)
2727

2828
# Magic bytes, because the model tells us nothing about the format it picked.
29-
IMAGE_SIGNATURES = ((b"\x89PNG", "image/png"), (b"\xff\xd8\xff", "image/jpeg"), (b"RIFF", "image/webp"))
29+
IMAGE_SIGNATURES = (
30+
(b"\x89PNG", "image/png"),
31+
(b"\xff\xd8\xff", "image/jpeg"),
32+
(b"RIFF", "image/webp"),
33+
)
3034

3135

3236
class UnusableImageError(Exception):

0 commit comments

Comments
 (0)