Silly 3.9

This commit is contained in:
William Fu-Hinthorn
2024-11-22 08:59:43 -08:00
parent 8eaebf6b6d
commit 8e9ff804c0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -13935,7 +13935,7 @@ def test_store_injected(
thread_2 = str(uuid.uuid4())
class Node:
def __init__(self, i: int | None = None):
def __init__(self, i: Optional[int] = None):
self.i = i
def __call__(self, inputs: State, config: RunnableConfig, store: BaseStore):
+1 -1
View File
@@ -12281,7 +12281,7 @@ async def test_store_injected_async(checkpointer_name: str, store_name: str) ->
thread_2 = str(uuid.uuid4())
class Node:
def __init__(self, i: int | None = None):
def __init__(self, i: Optional[int] = None):
self.i = i
async def __call__(