From a568099bf2b32ea951ac8a82f5c119c85de66b95 Mon Sep 17 00:00:00 2001 From: Caspar Broekhuizen Date: Fri, 19 Dec 2025 12:50:59 -0800 Subject: [PATCH] fix: schema funkiness --- libs/cli/langgraph_cli/schemas.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/cli/langgraph_cli/schemas.py b/libs/cli/langgraph_cli/schemas.py index feb8afb04..99694f25b 100644 --- a/libs/cli/langgraph_cli/schemas.py +++ b/libs/cli/langgraph_cli/schemas.py @@ -331,10 +331,9 @@ class AuthConfig(TypedDict, total=False): class EncryptionConfig(TypedDict, total=False): """Configuration for custom at-rest encryption logic. - + Allows you to implement custom encryption for sensitive data stored in the database, - including metadata fields and checkpoint blobs. - """ + including metadata fields and checkpoint blobs.""" path: str """Required. Path to an instance of the Encryption() class that implements custom encryption handlers.