Update calendar_app.py
Browse files- calendar_app.py +1 -1
calendar_app.py
CHANGED
|
@@ -144,7 +144,7 @@ if __name__ == "__main__":
|
|
| 144 |
date = input("Enter date (YYYY-MM-DD): ")
|
| 145 |
calendar.show_reminders(date)
|
| 146 |
elif choice == "6":
|
| 147 |
-
user_mth =
|
| 148 |
calendar.show_month(user_mth)
|
| 149 |
|
| 150 |
|
|
|
|
| 144 |
date = input("Enter date (YYYY-MM-DD): ")
|
| 145 |
calendar.show_reminders(date)
|
| 146 |
elif choice == "6":
|
| 147 |
+
user_mth = input("Enter month number (MM): ")
|
| 148 |
calendar.show_month(user_mth)
|
| 149 |
|
| 150 |
|