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

Function is_running

mypy/dmypy/client.py:721–727  ·  view source on GitHub ↗

Check if the server is running cleanly

(status_file: str)

Source from the content-addressed store, hash-verified

719
720
721def is_running(status_file: str) -> bool:
722 """Check if the server is running cleanly"""
723 try:
724 get_status(status_file)
725 except BadStatus:
726 return False
727 return True
728
729
730# Run main().

Callers 1

do_runFunction · 0.85

Calls 1

get_statusFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…