Skip to content

Commit d8b5942

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

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
@@ -44,7 +44,8 @@
4444

4545

4646
def pprint(object, stream=None, indent=1, width=80, depth=None, *,
47-
compact=False, sort_dicts=True, underscore_numbers=False, block_style=False):
47+
compact=False, sort_dicts=True, underscore_numbers=False,
48+
block_style=False):
4849
"""Pretty-print a Python object to a stream [default is sys.stdout]."""
4950
printer = PrettyPrinter(
5051
stream=stream, indent=indent, width=width, depth=depth,

0 commit comments

Comments
 (0)