Skip to content

Commit 5baca4c

Browse files
committed
fmt fix
1 parent dd236cb commit 5baca4c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

examples/howto/marginalizing-models.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -813,6 +813,7 @@
813813
}
814814
],
815815
"source": [
816+
"# fmt: off\n",
816817
"plt.hist(\n",
817818
" post.where(post.idx == 0).y.values.reshape(-1),\n",
818819
" bins=30,\n",
@@ -827,6 +828,7 @@
827828
" alpha=0.75,\n",
828829
" label='idx = 1'\n",
829830
")\n",
831+
"# fmt: on\n",
830832
"plt.legend();"
831833
]
832834
},

examples/howto/marginalizing-models.myst.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ post.where(post.idx == 1).y.mean().values
129129
```
130130

131131
```{code-cell} ipython3
132+
# fmt: off
132133
plt.hist(
133134
post.where(post.idx == 0).y.values.reshape(-1),
134135
bins=30,
@@ -143,6 +144,7 @@ plt.hist(
143144
alpha=0.75,
144145
label='idx = 1'
145146
)
147+
# fmt: on
146148
plt.legend();
147149
```
148150

0 commit comments

Comments
 (0)