Day 62 of 100 Days extra credit help

Question:
Am I not understanding how db.prefix() works correctly? I’m getting no matches on line 55, even when the date is entered correctly.
Repl link:
https://replit.com/@KurtHoernig/Day62100Days#main.py

    year = input('Year? > ')
    month = input('Month? > ')
    day = input('Day? > ')
    date = (f'{year}-{month}-{day}')
    print(f'Searching for: {date}')
    time.sleep(1)
    matches = db.prefix(date)

2 posts were merged into an existing topic: Day 062 - Project 62 : My Private Diary