From 12b90633a46a817c1ec68fdac3a495893c403497 Mon Sep 17 00:00:00 2001 From: prestonrasmussen Date: Fri, 13 Jun 2025 12:15:33 -0400 Subject: [PATCH] correct import of literal string --- graphiti_core/driver/neo4j_driver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graphiti_core/driver/neo4j_driver.py b/graphiti_core/driver/neo4j_driver.py index cf31420a..8b9058f0 100644 --- a/graphiti_core/driver/neo4j_driver.py +++ b/graphiti_core/driver/neo4j_driver.py @@ -16,9 +16,10 @@ limitations under the License. import logging from collections.abc import Coroutine -from typing import Any, LiteralString +from typing import Any from neo4j import AsyncGraphDatabase +from typing_extensions import LiteralString from graphiti_core.driver.driver import GraphDriver, GraphDriverSession from graphiti_core.helpers import DEFAULT_DATABASE