yangdx commited on
Commit
e0669d7
·
1 Parent(s): e9ab5e3

Fix linting

Browse files
Files changed (1) hide show
  1. lightrag/kg/neo4j_impl.py +3 -1
lightrag/kg/neo4j_impl.py CHANGED
@@ -532,7 +532,9 @@ class Neo4JStorage(BaseGraphStorage):
532
  """
533
  % entity_type
534
  )
535
- result = await tx.run(query, entity_id=node_id, properties=properties)
 
 
536
  logger.debug(
537
  f"Upserted node with entity_id '{node_id}' and properties: {properties}"
538
  )
 
532
  """
533
  % entity_type
534
  )
535
+ result = await tx.run(
536
+ query, entity_id=node_id, properties=properties
537
+ )
538
  logger.debug(
539
  f"Upserted node with entity_id '{node_id}' and properties: {properties}"
540
  )