Updated for answer

This commit is contained in:
Dimitris Zlatanidis 2023-05-11 08:56:31 +03:00
parent bd7baa8e30
commit a39d3a96d2

View file

@ -100,7 +100,7 @@ class RemovePackages(Configs):
if dependencies and not self.option_for_yes and self.ask_question:
self.view_warning_message(dependencies, name)
answer: str = input('\nDo you want to remove? [y/N] ')
if answer in ['N', 'n']:
if answer not in ['Y', 'y']:
return False
print()
return True