Skip to content

Commit 85cfe23

Browse files
authored
Update calculator.py
1 parent c7d8df4 commit 85cfe23

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)