Spaces:
Running
Running
Update app.py
Browse files
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(
|
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 = {
|