(self, target: str)
| 108 | environment: Environment |
| 109 | |
| 110 | def get_plugin(self, target: str) -> importlib_metadata.Distribution: |
| 111 | with enable_plugins(self.environment.config.plugins_dir): |
| 112 | return importlib_metadata.distribution(target) |
| 113 | |
| 114 | def is_installed(self, target: str) -> bool: |
| 115 | try: |
no test coverage detected