fix: Resolve issue with UUID being concatinated instead of string (#357)
Resolve issue regarding UUID being concatenated instead of string
This commit is contained in:
parent
0aa71c488f
commit
c24df239ea
1 changed files with 1 additions and 1 deletions
|
|
@ -53,6 +53,6 @@ async def retrieve_existing_edges(
|
||||||
existing_edges_map = {}
|
existing_edges_map = {}
|
||||||
|
|
||||||
for edge in existing_edges:
|
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
|
return existing_edges_map
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue