Fix: parameter error. (#5641)

### What problem does this PR solve?

#5600

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Kevin Hu 2025-03-05 14:37:51 +08:00 committed by GitHub
parent ca04ae9540
commit 02c955babb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -186,7 +186,7 @@ class Extractor:
src_id: str,
tgt_id: str,
edges_data: list[dict],
all_relationships_data
all_relationships_data=None
):
if not edges_data:
return
@ -229,7 +229,8 @@ class Extractor:
source_id=source_id
)
self._set_relation_(src_id, tgt_id, edge_data)
all_relationships_data.append(edge_data)
if all_relationships_data is not None:
all_relationships_data.append(edge_data)
async def _handle_entity_relation_summary(
self,