Skip to content

Commit 3550f0d

Browse files
authored
Update calculator.py
Correct!
1 parent 6a028fa commit 3550f0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ def division(x: int, y: int) -> int:
4949
Returns:
5050
int: `x` divided by `y`.
5151
"""
52-
return x // y
52+
return x / y

0 commit comments

Comments
 (0)