Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion mypy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,13 @@ def add_invertible_flag(
help="Include fine-grained dependency information in the cache for the mypy daemon",
)
incremental_group.add_argument(
"--fixed-format-cache", action="store_true", help=argparse.SUPPRESS
"--fixed-format-cache",
action="store_true",
help=(
"Use experimental fast and compact fixed format cache"
if compilation_status == "yes"
else argparse.SUPPRESS
),
)
incremental_group.add_argument(
"--skip-version-check",
Expand Down
Loading