Haleshot commited on
Commit
6914a99
·
unverified ·
1 Parent(s): 939b7c9

Move imports to top for consistency

Browse files
probability/06_probability_of_and.py CHANGED
@@ -19,6 +19,13 @@ def _():
19
  return (mo,)
20
 
21
 
 
 
 
 
 
 
 
22
  @app.cell(hide_code=True)
23
  def _(mo):
24
  mo.md(
@@ -305,12 +312,5 @@ def _(mo):
305
  return
306
 
307
 
308
- @app.cell
309
- def _():
310
- import matplotlib.pyplot as plt
311
- from matplotlib_venn import venn2
312
- return plt, venn2
313
-
314
-
315
  if __name__ == "__main__":
316
  app.run()
 
19
  return (mo,)
20
 
21
 
22
+ @app.cell
23
+ def _():
24
+ import matplotlib.pyplot as plt
25
+ from matplotlib_venn import venn2
26
+ return plt, venn2
27
+
28
+
29
  @app.cell(hide_code=True)
30
  def _(mo):
31
  mo.md(
 
312
  return
313
 
314
 
 
 
 
 
 
 
 
315
  if __name__ == "__main__":
316
  app.run()