kndambuki commited on
Commit
39fd3ed
·
verified ·
1 Parent(s): b2ce1ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -35,11 +35,8 @@ def get_birth_stone(month:str)-> str: #it's import to specify the return type
35
 
36
  month = month
37
  birthstone = birthstones.get(month, "Unknown")
38
- if birthstone in birthstones:
39
- response = birthstone
40
- else:
41
- response = "Unknown"
42
- return response
43
 
44
  @tool
45
  def get_current_time_in_timezone(timezone: str) -> str:
 
35
 
36
  month = month
37
  birthstone = birthstones.get(month, "Unknown")
38
+
39
+ return birthstone
 
 
 
40
 
41
  @tool
42
  def get_current_time_in_timezone(timezone: str) -> str: