KaiquanMah commited on
Commit
6bf6cce
·
verified ·
1 Parent(s): a740100

Update calendar_app.py

Browse files
Files changed (1) hide show
  1. 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 = int(input("Enter month number (MM): "))
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