Skip to content

Commit

Permalink
fix test cov
Browse files Browse the repository at this point in the history
Signed-off-by: rashidakanchwala <[email protected]>
  • Loading branch information
rashidakanchwala committed Oct 30, 2024
1 parent e861b30 commit a6791ed
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions package/kedro_viz/data_access/repositories/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ def __init__(self):
self.nodes_dict: Dict[str, GraphNode] = {}
self.nodes_list: List[GraphNode] = []

def has_node(self, node: GraphNode) -> bool:
return node.id in self.nodes_dict

def add_node(self, node: GraphNode) -> GraphNode:
existing_node = self.nodes_dict.get(node.id)
if existing_node:
Expand Down

0 comments on commit a6791ed

Please sign in to comment.