mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
Updated for answer
This commit is contained in:
parent
bd7baa8e30
commit
a39d3a96d2
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue