Skip to content

Commit fa21267

Browse files
Fixed calculator.py
1 parent 803efd7 commit fa21267

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

calculator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"""
55

66
# Should this function even be here?
7-
def poorly_implemented_function_with_no_close_parenthesis(
87

98
def addition(x: int, y: int) -> int:
109
"""
@@ -49,4 +48,4 @@ def division(x: int, y: int) -> int:
4948
Returns:
5049
int: `x` divided by `y`.
5150
"""
52-
return x // y
51+
return x // y

0 commit comments

Comments
 (0)