Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -23,13 +23,10 @@ def add_numbers(a: float, b: float) -> float:
|
|
| 23 |
"""
|
| 24 |
Adds two numbers and returns the result.
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
Returns:
|
| 31 |
-
- float: The sum of a and b.
|
| 32 |
-
"""
|
| 33 |
c = a + b
|
| 34 |
return f"The result of adding {a} plus {b} equals {c}"
|
| 35 |
|
|
|
|
| 23 |
"""
|
| 24 |
Adds two numbers and returns the result.
|
| 25 |
|
| 26 |
+
Args:
|
| 27 |
+
a: The first number (float).
|
| 28 |
+
b: The second number (float).
|
| 29 |
+
"""
|
|
|
|
|
|
|
|
|
|
| 30 |
c = a + b
|
| 31 |
return f"The result of adding {a} plus {b} equals {c}"
|
| 32 |
|