Skip to content

Commit

Permalink
FIX: remove size argument from sp.dotprint
Browse files Browse the repository at this point in the history
With the `size` argumnent, the resulting figure looks weird on the Sphinx build
  • Loading branch information
redeboer committed Dec 13, 2023
1 parent a192904 commit dca3271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/report/024.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@
" (sp.Symbol, {\"color\": \"dodgerblue1\"}),\n",
" (PhspFactorSWave, {\"color\": \"indianred2\"}),\n",
"]\n",
"dot = sp.dotprint(BW_expr, bgcolor=None, size=10, styles=dot_style)\n",
"dot = sp.dotprint(BW_expr, bgcolor=None, styles=dot_style)\n",
"graphviz.Source(dot)"
]
},
Expand Down Expand Up @@ -623,7 +623,7 @@
},
"outputs": [],
"source": [
"dot = sp.dotprint(BW_expr.doit(), bgcolor=None, size=10, styles=dot_style)\n",
"dot = sp.dotprint(BW_expr.doit(), bgcolor=None, styles=dot_style)\n",
"graphviz.Source(dot)"
]
},
Expand Down

0 comments on commit dca3271

Please sign in to comment.