gui commited on
Commit
62014a2
·
verified ·
1 Parent(s): 4f6ad25

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
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
- Parameters:
27
- - a (float): The first number.
28
- - b (float): The second number.
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