Skip to content

Commit 6914a99

Browse files
committed
Move imports to top for consistency
1 parent 939b7c9 commit 6914a99

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

probability/06_probability_of_and.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ def _():
1919
return (mo,)
2020

2121

22+
@app.cell
23+
def _():
24+
import matplotlib.pyplot as plt
25+
from matplotlib_venn import venn2
26+
return plt, venn2
27+
28+
2229
@app.cell(hide_code=True)
2330
def _(mo):
2431
mo.md(
@@ -305,12 +312,5 @@ def _(mo):
305312
return
306313

307314

308-
@app.cell
309-
def _():
310-
import matplotlib.pyplot as plt
311-
from matplotlib_venn import venn2
312-
return plt, venn2
313-
314-
315315
if __name__ == "__main__":
316316
app.run()

0 commit comments

Comments
 (0)