Skip to content

Commit e09361b

Browse files
committed
Add https:// before two URLs in cmdline help (#19816)
They won't be recognized as links without it.
1 parent 4e4c0bb commit e09361b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mypy/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ def add_invertible_flag(
10381038
"Mypy caches type information about modules into a cache to "
10391039
"let you speed up future invocations of mypy. Also see "
10401040
"mypy's daemon mode: "
1041-
"mypy.readthedocs.io/en/stable/mypy_daemon.html#mypy-daemon",
1041+
"https://mypy.readthedocs.io/en/stable/mypy_daemon.html#mypy-daemon",
10421042
)
10431043
incremental_group.add_argument(
10441044
"-i", "--incremental", action="store_true", help=argparse.SUPPRESS
@@ -1289,7 +1289,7 @@ def add_invertible_flag(
12891289
code_group = parser.add_argument_group(
12901290
title="Running code",
12911291
description="Specify the code you want to type check. For more details, see "
1292-
"mypy.readthedocs.io/en/stable/running_mypy.html#running-mypy",
1292+
"https://mypy.readthedocs.io/en/stable/running_mypy.html#running-mypy",
12931293
)
12941294
add_invertible_flag(
12951295
"--explicit-package-bases",

0 commit comments

Comments
 (0)