From e49540bc25e057ef2b9b368015cd3ea7d4504363 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Sat, 9 Sep 2017 20:06:58 +0500 Subject: [PATCH] Made json.dumps() example PEP-8 compliant. --- Doc/library/json.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/json.rst b/Doc/library/json.rst index fdbdcb169fab090..829218d558439b6 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -43,7 +43,7 @@ Encoding basic Python object hierarchies:: Compact encoding:: >>> import json - >>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',', ':')) + >>> json.dumps([1, 2, 3, {'4': 5, '6': 7}], separators=(',', ':')) '[1,2,3,{"4":5,"6":7}]' Pretty printing::