benediktstroebl commited on
Commit
6a40c60
·
1 Parent(s): a30f956
Files changed (1) hide show
  1. utils.py +1 -1
utils.py CHANGED
@@ -147,7 +147,7 @@ def create_flow_chart(steps):
147
 
148
  # Set node color and shape based on attributes
149
  node_colors.append(color_map[success])
150
- node_shapes.append(shape_map.get(action_type, 'star'))
151
 
152
  # Wrap text to improve readability
153
  wrapped_description = '<br>'.join(textwrap.wrap(description, width=50))
 
147
 
148
  # Set node color and shape based on attributes
149
  node_colors.append(color_map[success])
150
+ node_shapes.append(shape_map.get(action_type, 'circle'))
151
 
152
  # Wrap text to improve readability
153
  wrapped_description = '<br>'.join(textwrap.wrap(description, width=50))