Skip to content

Commit 7fae3a3

Browse files
committed
post TR1 commit - attempt 2
1 parent a45b113 commit 7fae3a3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

marimo-notebook/hypotenuse_calculator_after_update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@app.cell
88
def _(math):
99
def calculate_hypotenuse(opposite, adjacent):
10-
return return math.sqrt(opposite**2 + adjacent**2)
10+
return math.sqrt(opposite**2 + adjacent**2)
1111

1212
return (calculate_hypotenuse,)
1313

marimo-notebook/hypotenuse_calculator_before_update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@app.cell
88
def _(math):
99
def calculate_hypotenuse(opposite, adjacent):
10-
return return math.sqrt(opposite**2 + adjacent**2)
10+
return math.sqrt(opposite**2 + adjacent**2)
1111

1212
return (calculate_hypotenuse,)
1313

marimo-notebook/hypotenuse_calculator_duplicate_variable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@app.cell
88
def _(math):
99
def calculate_hypotenuse(opposite, adjacent):
10-
return return math.sqrt(opposite**2 + adjacent**2)
10+
return math.sqrt(opposite**2 + adjacent**2)
1111

1212
return (calculate_hypotenuse,)
1313

0 commit comments

Comments
 (0)