brian25 commited on
Commit
4957a61
·
verified ·
1 Parent(s): 67a88e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -178,7 +178,7 @@ def build_flowchart(edges, recycle_edges, extra_inputs, final_output):
178
 
179
  # Add recycle edges with dashed style or different color
180
  for s, t in recycle_edges:
181
- dot.edge(s, t, style="dashed", color="gray", label="recycle")
182
 
183
  return dot.pipe(format='png')
184
 
 
178
 
179
  # Add recycle edges with dashed style or different color
180
  for s, t in recycle_edges:
181
+ dot.edge(s, t)
182
 
183
  return dot.pipe(format='png')
184