(self)
| 630 | ] |
| 631 | |
| 632 | def missing_binary_alert(self) -> AlertNotification: |
| 633 | return AlertNotification( |
| 634 | title="Python LSP: Connection Error", |
| 635 | description=f"<span><a class='hyperlink' href='https://github.com/python-lsp/python-lsp-server'>Install python-lsp-server</a> for Python language support. If already installed, check {self.log_file} or disable pylsp in Settings > Editor > Language Servers.</span>", |
| 636 | variant="danger", |
| 637 | ) |
| 638 | |
| 639 | |
| 640 | class BasedpyrightServer(BaseLspServer): |