jaburaschi commited on
Commit
ff6f4cc
·
verified ·
1 Parent(s): 52978ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -44,7 +44,7 @@ def add_numbers(first_number:str, second_number:int)-> str:
44
 
45
  try:
46
  return str(float(first_number) + float(second_number))
47
- catch:
48
  return f"Error adding the two parameters '{first_number}' and '{second_number}'"
49
 
50
 
 
44
 
45
  try:
46
  return str(float(first_number) + float(second_number))
47
+ finally:
48
  return f"Error adding the two parameters '{first_number}' and '{second_number}'"
49
 
50