diff --git a/birthdays.py b/birthdays.py index a0fec60..4f24010 100644 --- a/birthdays.py +++ b/birthdays.py @@ -25,7 +25,9 @@ def days_until_next(date): ) print( - f"Upcoming Birthdays:\n{'=' * 19}\n{text}" - if text - else "You don't have any birthdays in your address book.", + ( + f"Upcoming Birthdays:\n{'=' * 19}\n{text}" + if text + else "You don't have any birthdays in your address book." + ), )