remove the word Optional from description
Browse files- lesson_graph.py +1 -1
lesson_graph.py
CHANGED
@@ -96,7 +96,7 @@ class LessonGraph:
|
|
96 |
|
97 |
for field, node_type in optional_nodes.items():
|
98 |
if self.inputs.get(field):
|
99 |
-
nodes[self.inputs[field]] = {"type": node_type, "description": f"
|
100 |
|
101 |
# Add nodes to the graph
|
102 |
for node, attributes in nodes.items():
|
|
|
96 |
|
97 |
for field, node_type in optional_nodes.items():
|
98 |
if self.inputs.get(field):
|
99 |
+
nodes[self.inputs[field]] = {"type": node_type, "description": f"{node_type.value}"}
|
100 |
|
101 |
# Add nodes to the graph
|
102 |
for node, attributes in nodes.items():
|