Skip to content

Commit a8b0734

Browse files
Merge pull request #1345 from datajoint/feat/diagram-improvements
feat(diagram): schema grouping, collapse, Mermaid output, and bug fixes
2 parents 1698acf + 810ceee commit a8b0734

File tree

4 files changed

+580
-33
lines changed

4 files changed

+580
-33
lines changed

src/datajoint/dependencies.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ def __init__(self, connection=None) -> None:
137137
def clear(self) -> None:
138138
"""Clear the graph and reset loaded state."""
139139
self._loaded = False
140+
self._node_alias_count = itertools.count() # reset alias IDs for consistency
140141
super().clear()
141142

142143
def load(self, force: bool = True) -> None:

0 commit comments

Comments
 (0)