Allow uninstall to take multiple packages and files (#125)

Moves the command to `puffin pip-uninstall` for now to separate from the
managed interface, and redoes the command output.
This commit is contained in:
Charlie Marsh 2023-10-18 22:30:11 -04:00 committed by GitHub
parent 4b91ae4769
commit 573f5832a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 204 additions and 71 deletions

View file

@ -90,7 +90,7 @@ pub fn uninstall_wheel(dist_info: &Path) -> Result<Uninstall, Error> {
})
}
#[derive(Debug)]
#[derive(Debug, Default)]
pub struct Uninstall {
/// The number of files that were removed during the uninstallation.
pub file_count: usize,