Fix linting

This commit is contained in:
yangdx
2025-04-02 12:16:40 +08:00
parent cd67d7cd79
commit c72c149e71

View File

@@ -532,7 +532,9 @@ class Neo4JStorage(BaseGraphStorage):
"""
% entity_type
)
result = await tx.run(query, entity_id=node_id, properties=properties)
result = await tx.run(
query, entity_id=node_id, properties=properties
)
logger.debug(
f"Upserted node with entity_id '{node_id}' and properties: {properties}"
)