Skip to content

Commit

Permalink
Removing parameter on add_reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
ReTeam Labs committed Apr 9, 2020
1 parent 73f6093 commit aa71762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def handle_input(input):
list_reminders()
print_menu()
elif(input == "2"):
add_reminder("reminder")
add_reminder()
list_reminders()
print_menu()
else:
Expand Down
2 changes: 1 addition & 1 deletion src/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def list_reminders():
print(e.ljust(32), end=' ')
print()

def add_reminder(reminder):
def add_reminder():
print()
reminder = input("What would you like to be reminded about?: ")

Expand Down

0 comments on commit aa71762

Please sign in to comment.