diff --git a/app/database/create_database.py b/app/database/create_database.py index a0a1f15..74c0a48 100644 --- a/app/database/create_database.py +++ b/app/database/create_database.py @@ -38,8 +38,7 @@ def add_all() -> None: def recreate_from_scratch() -> None: confirmation = "Are you very very sure? (Will delete previous entries!) (y/N) " - check = "I acknowledge any repercussions!" - if input(confirmation).lower() in yes and input("Type: '{}' ".format(check)).lower() == check: + if input(confirmation) in yes: print("Resetting the database!") db.drop_all() db.create_all()