core: add space at end of error message link (#28270)

This commit is contained in:
Erick Friis 2024-11-21 14:19:59 -08:00 committed by GitHub
parent 5bc2df3060
commit b3ee1f8713
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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} "
)