fix: Resolve issue with UUID being concatinated instead of string (#358)
Resolve issue regarding UUID being concatenated instead of string
This commit is contained in:
parent
0aa71c488f
commit
92ecd8a024
1 changed files with 1 additions and 1 deletions
|
|
@ -53,6 +53,6 @@ async def retrieve_existing_edges(
|
|||
existing_edges_map = {}
|
||||
|
||||
for edge in existing_edges:
|
||||
existing_edges_map[edge[0] + edge[1] + edge[2]] = True
|
||||
existing_edges_map[str(edge[0]) + str(edge[1]) + edge[2]] = True
|
||||
|
||||
return existing_edges_map
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue