alvaropabon commited on
Commit
bed71e7
·
verified ·
1 Parent(s): 199b819

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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'{suma}'"
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