Skip to content

Commit d13da64

Browse files
committed
addition of final blank line
1 parent ffe3f83 commit d13da64

File tree

6 files changed

+9
-2
lines changed

6 files changed

+9
-2
lines changed

marimo-notebook/break_even_analysis_UI_elements.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
def _():
1111
import matplotlib.pyplot as plt
1212
import marimo as mo
13+
1314
return mo, plt
1415

1516

@@ -77,7 +78,8 @@ def _(mo):
7778
ui_selling_price = mo.ui.text(value="10")
7879

7980
ui_quantity = mo.ui.dropdown(
80-
options={"10000": 10000, "12000": 12000, "15000": 15000}, value="10000",
81+
options={"10000": 10000, "12000": 12000, "15000": 15000},
82+
value="10000",
8183
)
8284

8385
ui_disply_break_even = mo.ui.switch()

marimo-notebook/break_even_analysis_chart_code.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
def _():
1111
import matplotlib.pyplot as plt
1212
import marimo as mo
13+
1314
return mo, plt
1415

1516

marimo-notebook/break_even_analysis_solution.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
def _():
1111
import matplotlib.pyplot as plt
1212
import marimo as mo
13+
1314
return mo, plt
1415

1516

marimo-notebook/equation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737
x2 = (-b - math.sqrt(b**2 - 4 * a * c)) / (2 * a)
3838

3939
# %%
40-
print(f"x = {x1} and {x2}.")
40+
print(f"x = {x1} and {x2}.")

marimo-notebook/quadratic.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
@app.cell
88
def _():
99
import marimo as mo
10+
1011
return (mo,)
1112

1213

@@ -47,6 +48,7 @@ def _():
4748
@app.cell
4849
def _():
4950
import math
51+
5052
return (math,)
5153

5254

marimo-notebook/simultaneous_equations_ui.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
@app.cell
88
def _():
99
import marimo as mo
10+
1011
return (mo,)
1112

1213

0 commit comments

Comments
 (0)