Skip to content

Commit ddf572f

Browse files
committed
lintttttt
1 parent b9dd786 commit ddf572f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mdbub/core/mindmap.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ def __init__(
2525
self.color = color
2626
self.icon = icon
2727
self.metadata = metadata or {}
28-
self.parent: Optional["MindMapNode"] = (
29-
None # Reference to parent node, useful for navigation
30-
)
28+
self.parent: Optional[
29+
"MindMapNode"
30+
] = None # Reference to parent node, useful for navigation
3131

3232
def add_child(self, child: "MindMapNode") -> None:
3333
self.children.append(child)

0 commit comments

Comments
 (0)