From b3ee1f871348c0882416ba650d1cd7f2c2fd9696 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 21 Nov 2024 14:19:59 -0800 Subject: [PATCH] core: add space at end of error message link (#28270) --- libs/core/langchain_core/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/langchain_core/exceptions.py b/libs/core/langchain_core/exceptions.py index 38158f37bac..71ddaab5b68 100644 --- a/libs/core/langchain_core/exceptions.py +++ b/libs/core/langchain_core/exceptions.py @@ -70,5 +70,5 @@ def create_message(*, message: str, error_code: ErrorCode) -> str: return ( f"{message}\n" "For troubleshooting, visit: https://python.langchain.com/docs/" - f"troubleshooting/errors/{error_code.value}" + f"troubleshooting/errors/{error_code.value} " )