Atomic Reps · Python
Rep 01Your fix changed the default to reminders=None. What did the old signature do the second time it was called without a list?
def add_reminder(text, reminders=[]):
reminders.append(text)
return remindersFrom memory. Reply with a letter.

