Skip to content

Commit bf64653

Browse files
Remove color from HelpFormatter
1 parent b3bf212 commit bf64653

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Lib/argparse.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,13 @@ def __init__(
166166
indent_increment=2,
167167
max_help_position=24,
168168
width=None,
169-
color=True,
170169
):
171170
# default setting for width
172171
if width is None:
173172
import shutil
174173
width = shutil.get_terminal_size().columns
175174
width -= 2
176175

177-
self._set_color(color)
178176
self._prog = prog
179177
self._indent_increment = indent_increment
180178
self._max_help_position = min(max_help_position,

0 commit comments

Comments
 (0)