Update calendar_app.py
Browse files- calendar_app.py +1 -1
calendar_app.py
CHANGED
|
@@ -82,7 +82,7 @@ class Calendar:
|
|
| 82 |
def show_month(self, user_mth):
|
| 83 |
"""Show reminders for a specific month."""
|
| 84 |
if (self.reminders is None) or len(self.reminders)<1:
|
| 85 |
-
print(f"No reminders for month: {
|
| 86 |
else:
|
| 87 |
print("# Date Event Description")
|
| 88 |
print_counter=1
|
|
|
|
| 82 |
def show_month(self, user_mth):
|
| 83 |
"""Show reminders for a specific month."""
|
| 84 |
if (self.reminders is None) or len(self.reminders)<1:
|
| 85 |
+
print(f"No reminders for month: {user_mth}.")
|
| 86 |
else:
|
| 87 |
print("# Date Event Description")
|
| 88 |
print_counter=1
|