Skip to content

Commit 61b142b

Browse files
committed
Image
1 parent e3d3f23 commit 61b142b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1516,7 +1516,7 @@ Image
15161516
from PIL import Image
15171517
width, height = 100, 100
15181518
img = Image.new('L', (width, height), 'white')
1519-
img.putdata([255*a/(width*height) for a in range(width*height)])
1519+
img.putdata([255 * a/(width*height) for a in range(width*height)])
15201520
img.save('out.png')
15211521
```
15221522

0 commit comments

Comments
 (0)