Skip to content

Commit 8c3ed5c

Browse files
Update Lib/pprint.py
Co-authored-by: donBarbos <[email protected]>
1 parent d8b5942 commit 8c3ed5c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/pprint.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def pprint(object, stream=None, indent=1, width=80, depth=None, *,
5555

5656

5757
def pformat(object, indent=1, width=80, depth=None, *,
58-
compact=False, sort_dicts=True, underscore_numbers=False, block_style=False):
58+
compact=False, sort_dicts=True, underscore_numbers=False,
59+
block_style=False):
5960
"""Format a Python object into a pretty-printed representation."""
6061
return PrettyPrinter(indent=indent, width=width, depth=depth,
6162
compact=compact, sort_dicts=sort_dicts,

0 commit comments

Comments
 (0)