Spaces:
Sleeping
Sleeping
Commit
·
629a96e
1
Parent(s):
4bca6c5
update
Browse files
app.py
CHANGED
|
@@ -62,7 +62,7 @@ def guess_winnie_mood(date: str) -> str:
|
|
| 62 |
return 'happy'
|
| 63 |
elif date == 'A day before exam':
|
| 64 |
return 'anxious and nervous'
|
| 65 |
-
elif
|
| 66 |
return 'Wanna do something naughty'
|
| 67 |
else:
|
| 68 |
raise Exception(f"Invalid date: {date}")
|
|
|
|
| 62 |
return 'happy'
|
| 63 |
elif date == 'A day before exam':
|
| 64 |
return 'anxious and nervous'
|
| 65 |
+
elif "sunday evenning" in date.lower():
|
| 66 |
return 'Wanna do something naughty'
|
| 67 |
else:
|
| 68 |
raise Exception(f"Invalid date: {date}")
|