diff options
Diffstat (limited to 'tests/lsp_tests/test_lsp_dctrl.py')
-rw-r--r-- | tests/lsp_tests/test_lsp_dctrl.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/lsp_tests/test_lsp_dctrl.py b/tests/lsp_tests/test_lsp_dctrl.py index e93ba17..ab55bb8 100644 --- a/tests/lsp_tests/test_lsp_dctrl.py +++ b/tests/lsp_tests/test_lsp_dctrl.py @@ -4,16 +4,15 @@ from typing import Optional import pytest from debputy.lsp.debputy_ls import DebputyLanguageServer +from debputy.lsprotocol.types import ( + CompletionParams, + TextDocumentIdentifier, + HoverParams, + MarkupContent, + SemanticTokensParams, +) try: - from lsprotocol.types import ( - CompletionParams, - TextDocumentIdentifier, - HoverParams, - MarkupContent, - SemanticTokensParams, - ) - from debputy.lsp.lsp_debian_control import ( _debian_control_completions, _debian_control_hover, |