kndambuki commited on
Commit
fe2440c
·
verified ·
1 Parent(s): 3dbed9d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ def destiny_still_arrives(name:str, age_or_dob:str)-> str: #it's import to speci
40
  "December": "Turquoise"
41
  }
42
 
43
- month = datetime.strptime(dob, "%Y-%m-%d").strftime("%B")
44
  birthstone = birthstones.get(month, "Unknown")
45
 
46
  image_urls = {
 
40
  "December": "Turquoise"
41
  }
42
 
43
+ month = datetime.strptime(age_or_dob, "%Y-%m-%d").strftime("%B")
44
  birthstone = birthstones.get(month, "Unknown")
45
 
46
  image_urls = {