Skip to content

Commit a7fbad9

Browse files
sir-sigurdMariatta
authored andcommitted
Make json.dumps() example to be PEP-8 compliant. (GH-3472)
1 parent b84bcc4 commit a7fbad9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/json.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Encoding basic Python object hierarchies::
4343
Compact encoding::
4444

4545
>>> import json
46-
>>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',', ':'))
46+
>>> json.dumps([1, 2, 3, {'4': 5, '6': 7}], separators=(',', ':'))
4747
'[1,2,3,{"4":5,"6":7}]'
4848

4949
Pretty printing::

0 commit comments

Comments
 (0)