diff --git a/README.md b/README.md index 9e09a3f..31f9cf3 100644 --- a/README.md +++ b/README.md @@ -1516,7 +1516,7 @@ Image from PIL import Image width, height = 100, 100 img = Image.new('L', (width, height), 'white') -img.putdata([255*a/(width*height) for a in range(width*height)]) +img.putdata([255 * a/(width*height) for a in range(width*height)]) img.save('out.png') ```