Skip to content

Commit ec1fe1c

Browse files
authored
Update calculator.py
1 parent c6a01b3 commit ec1fe1c

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)