From 61b142b80b0997ffddf91a9f8ab2132422c75b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 29 Jan 2019 20:47:56 +0100 Subject: [PATCH] Image --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') ```