(self)
| 506 | |
| 507 | @property |
| 508 | def can_remove(self): |
| 509 | if self.env_type == "conda": |
| 510 | return False |
| 511 | if not self.bin_path.startswith(python_manager_path()) and \ |
| 512 | not self.bin_path.startswith(pyenv_path()): |
| 513 | return False |
| 514 | return True |
| 515 | |
| 516 | @property |
| 517 | def can_create(self): |
nothing calls this directly
no test coverage detected