This commit is contained in:
2021-03-14 13:22:10 +01:00
parent 5c012ab4a0
commit 7ffd553709
34 changed files with 156 additions and 103 deletions

View File

@@ -64,6 +64,8 @@ class UninstallService(CommandABC):
Console.error(f'Usage: cpl uninstall <package>')
return
Pip.set_executable(self._project_settings.python_path)
package = args[0]
is_in_dependencies = False
@@ -101,6 +103,4 @@ class UninstallService(CommandABC):
project_file.close()
Console.write_line(f'Removed {package}')
Pip.reset_executable()