Skip to content

Commit

Permalink
Merge pull request #152 from scipp/visualize-blue-boxes
Browse files Browse the repository at this point in the history
Fix blue cluster boxes in task graph visualization
SimonHeybrock authored Apr 5, 2024
2 parents ad4e33b + 4108fb5 commit da886d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sciline/visualize.py
Original file line number Diff line number Diff line change
@@ -87,7 +87,7 @@ def get_subgraph_name(name: str, kind: str) -> str:
if kind == 'series':
# Example: Series[RowId, Material[Country]] -> RowId, Material[Country]
return name.partition('[')[-1].rpartition(']')[0]
return name
return name.split('[')[0]

subgraphs: Dict[str, FormattedGraph] = {}
for p, formatted_p in graph.items():

0 comments on commit da886d9

Please sign in to comment.