Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -18,7 +18,7 @@ def calculate_sum(number1:float, number2:float)-> float: #it's import to specify
|
|
| 18 |
"""
|
| 19 |
try:
|
| 20 |
suma = number1 + number2
|
| 21 |
-
return f"The sum is
|
| 22 |
except Exception as e:
|
| 23 |
return f"Error suming: {str(e)}"
|
| 24 |
|
|
|
|
| 18 |
"""
|
| 19 |
try:
|
| 20 |
suma = number1 + number2
|
| 21 |
+
return f"The sum is {suma}"
|
| 22 |
except Exception as e:
|
| 23 |
return f"Error suming: {str(e)}"
|
| 24 |
|