chore: apply format/lint fixes across checkpoint, checkpoint-postgres, prebuilt

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Sydney Runkle
2026-04-30 14:49:05 -04:00
co-authored by Claude Sonnet 4.6
parent 2d39d536fe
commit baa748e81b
5 changed files with 27 additions and 25 deletions
+3 -1
View File
@@ -1004,7 +1004,9 @@ def test_delta_value_serde_round_trip() -> None:
from langgraph.checkpoint.serde.jsonplus import JsonPlusSerializer
serde = JsonPlusSerializer()
original = DeltaValue(delta=[{"type": "human", "content": "hi"}], prev_checkpoint_id="abc-123")
original = DeltaValue(
delta=[{"type": "human", "content": "hi"}], prev_checkpoint_id="abc-123"
)
type_tag, blob = serde.dumps_typed(original)
assert type_tag == "diff"
loaded = serde.loads_typed((type_tag, blob))