Updated for new line

This commit is contained in:
Dimitris Zlatanidis 2023-05-15 23:46:02 +03:00
parent 60bc52b879
commit 59df2e7ea5

View file

@ -111,8 +111,9 @@ class RemovePackages(Configs):
def question_to_remove(self) -> bool: def question_to_remove(self) -> bool:
if not self.option_for_yes and self.ask_question: if not self.option_for_yes and self.ask_question:
answer: str = input('\nDo you want to remove? [y/N] ') answer: str = input(f'\nDo you want to remove? [y/N] ')
if answer in ['Y', 'y']: if answer in ['Y', 'y']:
print()
return True return True
print() print()