This commit is contained in:
vbarda
2025-02-12 19:17:05 -08:00
parent 661476e88d
commit c36323cba8
+1 -1
View File
@@ -6488,7 +6488,7 @@ def test_pydantic_none_state_update() -> None:
from pydantic import BaseModel
class State(BaseModel):
foo: str | None
foo: Optional[str]
def node_a(state: State) -> State:
return State(foo=None)