We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3bf212 commit bf64653Copy full SHA for bf64653
Lib/argparse.py
@@ -166,15 +166,13 @@ def __init__(
166
indent_increment=2,
167
max_help_position=24,
168
width=None,
169
- color=True,
170
):
171
# default setting for width
172
if width is None:
173
import shutil
174
width = shutil.get_terminal_size().columns
175
width -= 2
176
177
- self._set_color(color)
178
self._prog = prog
179
self._indent_increment = indent_increment
180
self._max_help_position = min(max_help_position,
0 commit comments