johnkirkwood commited on
Commit
4ee1d0e
·
verified ·
1 Parent(s): b3e332a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def convert_dog_age_to_human_age(name_of_pet: str, dog_age: int) -> int:
16
  """
17
  human_age = dog_age * 7;
18
 
19
- return f"{name_of_pet}'s age in human years is '{human_age}."
20
 
21
  @tool
22
  def get_current_time_in_timezone(timezone: str) -> str:
 
16
  """
17
  human_age = dog_age * 7;
18
 
19
+ return f"{name_of_pet}'s age in human years is {human_age}."
20
 
21
  @tool
22
  def get_current_time_in_timezone(timezone: str) -> str: