fix: lint error

This commit is contained in:
Boris Arzentar 2025-10-14 22:02:24 +02:00
parent fdc6113d11
commit e6166d24bd
No known key found for this signature in database
GPG key ID: D5CC274C784807B7

View file

@ -152,10 +152,10 @@ async def get_graph_from_model(
Returns:
Tuple of (nodes, edges) extracted from the model
"""
if added_nodes == None:
if added_nodes is None:
added_nodes = {}
if added_edges == None:
if added_edges is None:
added_edges = {}
if str(data_point.id) in added_nodes: