diff --git a/README.md b/README.md index c898c89..07af6e4 100644 --- a/README.md +++ b/README.md @@ -31,21 +31,21 @@ c = Claptcha("Text", "FreeMono.ttf") # Get PIL Image object text, image = c.image -print(text)) # 'Text' -print(type(image))) # +print(text) # 'Text' +print(type(image)) # # Get BytesIO object (note that it will represent a different image, just # with the same text) text, bytes = c.bytes -print(text)) # 'Text' -print(type(bytes))) # +print(text) # 'Text' +print(type(bytes)) # # Save a PNG file 'test.png' text, file = c.write('test.png') -print(text)) # 'Text' -print(file)) # 'test.png' +print(text) # 'Text' +print(file) # 'test.png' ``` ```python