pprint: Remove unused arguments on PrettyPrinter

This commit is contained in:
Benjamin Schubert 2023-11-21 21:35:27 +00:00
parent c4375f14b8
commit 64e72b79f6
1 changed files with 0 additions and 15 deletions

View File

@ -15,7 +15,6 @@
import collections as _collections import collections as _collections
import dataclasses as _dataclasses import dataclasses as _dataclasses
import re import re
import sys as _sys
import types as _types import types as _types
from io import StringIO as _StringIO from io import StringIO as _StringIO
from typing import Any from typing import Any
@ -61,9 +60,7 @@ class PrettyPrinter:
indent=4, indent=4,
width=80, width=80,
depth=None, depth=None,
stream=None,
*, *,
compact=False,
sort_dicts=True, sort_dicts=True,
underscore_numbers=False, underscore_numbers=False,
): ):
@ -79,13 +76,6 @@ class PrettyPrinter:
depth depth
The maximum depth to print out nested structures. The maximum depth to print out nested structures.
stream
The desired output stream. If omitted (or false), the standard
output stream available at construction will be used.
compact
If true, several items will be combined in one line.
sort_dicts sort_dicts
If true, dict keys are sorted. If true, dict keys are sorted.
@ -101,11 +91,6 @@ class PrettyPrinter:
self._depth = depth self._depth = depth
self._indent_per_level = indent self._indent_per_level = indent
self._width = width self._width = width
if stream is not None:
self._stream = stream
else:
self._stream = _sys.stdout
self._compact = bool(compact)
self._sort_dicts = sort_dicts self._sort_dicts = sort_dicts
self._underscore_numbers = underscore_numbers self._underscore_numbers = underscore_numbers