Skip to content

Commit

Permalink
fix: Fixed initializing edges list as list, not dict in grapher
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-R-Perkins committed Jul 16, 2024
1 parent 37007c9 commit d4d6a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundled/tool/zenml_grapher.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class Grapher:
def __init__(self, run):
self.run = run
self.nodes = []
self.edges = []
self.artifacts = {}
self.edges = {}

def build_nodes_from_steps(self) -> None:
"""Builds internal node list from run steps"""
Expand Down

0 comments on commit d4d6a19

Please sign in to comment.