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:
Igor Ilic 2024-12-12 11:01:47 +01:00 committed by GitHub
parent 0aa71c488f
commit c24df239ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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