def post_run_cleanup()

in src/health_runner/health_runner.py [0:0]


def post_run_cleanup() -> None:
  """Clean up after the health check."""
  for func in cleanup_functions:
    try:
      func()
    except Exception:  # pylint: disable=broad-exception-caught
      logging.exception("Cleanup failed.")