Skip to content

Commit

Permalink
🐛 solves #88
Browse files Browse the repository at this point in the history
  • Loading branch information
Wytamma committed Nov 16, 2024
1 parent 8486010 commit c852343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snk/nest.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def uninstall(self, name: str, force: bool = False) -> bool:
for p in to_remove:
print(f" {p}{'/*' if p.is_dir() else ''}")
ans = input("Proceed (Y/n)? ")
proceed = ans.lower() in ["y", "yes"]
proceed = ans.lower() in ["y", "yes", ""]
if not proceed:
return False
self.delete_paths(to_remove)
Expand Down

0 comments on commit c852343

Please sign in to comment.