We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5bdf51 commit e59eeb3Copy full SHA for e59eeb3
src/datajoint/diagram.py
@@ -747,7 +747,10 @@ def make_dot(self):
747
if cls is not None:
748
description = cls().describe(context=self.context).split("\n")
749
description = (
750
- ("-" * 30 if q.startswith("---") else (q.replace("->", "→") if "->" in q else q.split(":")[0]))
+ (
751
+ "-" * 30 if q.startswith("---")
752
+ else (q.replace("->", "→") if "->" in q else q.split(":")[0])
753
+ )
754
for q in description
755
if not q.startswith("#")
756
)
0 commit comments