Skip to content

Commit

Permalink
Remove the remote content again
Browse files Browse the repository at this point in the history
I really am not handling the local rebase + remote branch interaction nicely. This is even messier than just merging the upstream stuff to start with 🤦
  • Loading branch information
liamhuber committed Jan 18, 2024
1 parent e9e518b commit c2ea143
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions pyiron_workflow/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,15 +347,6 @@ def graph_root(self) -> Node:
"""The parent-most node in this graph."""
return self if self.parent is None else self.parent.graph_root

@property
def semantic_path(self):
path = self.label
if self.parent is not None:
path = self.parent.semantic_path + self._semantic_delimiter + path
# else:
# path = self.semantic_root + self._semantic_delimiter + path
return path

@property
def readiness_report(self) -> str:
input_readiness = "\n".join(
Expand Down

0 comments on commit c2ea143

Please sign in to comment.