From ff178bb27a6a15bd3065f3224189fc531fccfaf0 Mon Sep 17 00:00:00 2001 From: Greg Price Date: Sun, 6 May 2018 14:06:34 -0700 Subject: [PATCH] mypy: Drop now-redundant `-i` option. This used to be a synonym for `--incremental`. Since mypy 0.590, incremental mode is the default, and the flag is ignored; so we can happily drop it. --- tools/run-mypy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run-mypy b/tools/run-mypy index 3732d45101..9baedd67a5 100755 --- a/tools/run-mypy +++ b/tools/run-mypy @@ -84,7 +84,7 @@ if not python_files and not pyi_files: sys.exit(0) extra_args = ["--follow-imports=silent", - "-i", "--cache-dir=var/mypy-cache"] + "--cache-dir=var/mypy-cache"] if args.linecoverage_report: extra_args.append("--linecoverage-report") extra_args.append("var/linecoverage-report")