Skip to content

Commit ca7e540

Browse files
Update app.py
1 parent 7474de9 commit ca7e540

File tree

1 file changed

+2
-2
lines changed
  • exercises/04-area_of_right_triangle

1 file changed

+2
-2
lines changed

exercises/04-area_of_right_triangle/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
def area_of_triangle(arg1, arg2):
66
#your code here, please remove the "None"
7-
return int(arg1) * int(arg2) / 2
7+
return None
88

99
# Testing your function
10-
print(area_of_triangle(b, h))
10+
print(area_of_triangle(b, h))

0 commit comments

Comments
 (0)