MCPcopy Index your code
hub / github.com/python/mypy / do_check

Function do_check

mypy/dmypy/client.py:465–471  ·  view source on GitHub ↗

Ask the daemon to check a list of files.

(args: argparse.Namespace)

Source from the content-addressed store, hash-verified

463
464@action(check_parser)
465def do_check(args: argparse.Namespace) -> None:
466 """Ask the daemon to check a list of files."""
467 t0 = time.time()
468 response = request(args.status_file, "check", files=args.files, export_types=args.export_types)
469 t1 = time.time()
470 response["roundtrip_time"] = t1 - t0
471 check_output(response, args.verbose, args.junit_xml, args.perf_stats_file)
472
473
474@action(recheck_parser)

Callers

nothing calls this directly

Calls 2

requestFunction · 0.85
check_outputFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…