From c2ef3f3fd3cf65b5f7325afe44c508a36ee5644b Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Fri, 7 Nov 2025 07:56:00 -0500 Subject: [PATCH] fix: remove SDK inline links (#6307) these were broken; remove for now. --- libs/sdk-py/langgraph_sdk/client.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/sdk-py/langgraph_sdk/client.py b/libs/sdk-py/langgraph_sdk/client.py index 4f23e4250..d64f8fe85 100644 --- a/libs/sdk-py/langgraph_sdk/client.py +++ b/libs/sdk-py/langgraph_sdk/client.py @@ -1,11 +1,11 @@ """The LangGraph client implementations connect to the LangGraph API. -This module provides both asynchronous ([get_client(url="http://localhost:2024"))](#get_client) or [LangGraphClient](#LangGraphClient)) -and synchronous ([get_sync_client(url="http://localhost:2024"))](#get_sync_client) or [SyncLanggraphClient](#SyncLanggraphClient)) -clients to interacting with the LangGraph API's core resources such as -Assistants, Threads, Runs, and Cron jobs, as well as its persistent -document Store. -""" # noqa: E501 +This module provides both asynchronous (`get_client(url="http://localhost:2024")` or +`LangGraphClient`) and synchronous (`get_sync_client(url="http://localhost:2024")` or +`SyncLanggraphClient`) clients to interacting with the LangGraph API's core resources +such as Assistants, Threads, Runs, and Cron jobs, as well as its persistent document +Store. +""" from __future__ import annotations