Skip to content

Commit 1b15564

Browse files
committed
try to fix a mysterious trailing space error
1 parent a124c1c commit 1b15564

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/watermark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
text = text.rotate(45)
2020

2121
# tile to the size of the image page, then tile again to the full image size
22-
text = text.embed(10, 10, text.width + 20, text.width + 20)
22+
text = text.embed(10, 10, text.width + 20, text.width + 20) # noqa: W291
2323
page_height = im.get_page_height()
2424
text = text.replicate(
2525
int(1 + im.width / text.width), int(1 + page_height / text.height)

0 commit comments

Comments
 (0)