Skip to content

Commit 6b9db6b

Browse files
committed
gh-144881: Drop redundant default from --retries help text
1 parent 6f7dde4 commit 6b9db6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/asyncio/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def interrupt(self) -> None:
166166
"--retries",
167167
type=int,
168168
default=3,
169-
help="Number of retries on transient attach errors (default: 3)",
169+
help="Number of retries on transient attach errors",
170170
)
171171
pstree = subparsers.add_parser(
172172
"pstree", help="Display a tree of all pending tasks in a process"
@@ -176,7 +176,7 @@ def interrupt(self) -> None:
176176
"--retries",
177177
type=int,
178178
default=3,
179-
help="Number of retries on transient attach errors (default: 3)",
179+
help="Number of retries on transient attach errors",
180180
)
181181
args = parser.parse_args()
182182
match args.command:

0 commit comments

Comments
 (0)