Skip to content

Commit 9c7afd5

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

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
@@ -60,7 +60,8 @@ def pformat(object, indent=1, width=80, depth=None, *,
6060
"""Format a Python object into a pretty-printed representation."""
6161
return PrettyPrinter(indent=indent, width=width, depth=depth,
6262
compact=compact, sort_dicts=sort_dicts,
63-
underscore_numbers=underscore_numbers, block_style=block_style).pformat(object)
63+
underscore_numbers=underscore_numbers,
64+
block_style=block_style).pformat(object)
6465

6566

6667
def pp(object, *args, sort_dicts=False, **kwargs):

0 commit comments

Comments
 (0)