Skip to content

Commit 1159078

Browse files
committed
style: move import
1 parent 6c9e029 commit 1159078

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lsp_client/capability/request/signature_help.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
from collections.abc import Sequence
44
from typing import Protocol, override, runtime_checkable
55

6+
import attrs
7+
68
from lsp_client.jsonrpc.id import jsonrpc_uuid
79
from lsp_client.protocol import CapabilityClientProtocol, TextDocumentCapabilityProtocol
810
from lsp_client.utils.types import AnyPath, Position, lsp_type
@@ -109,7 +111,6 @@ async def request_active_signature(
109111
it prefers the `active_parameter` from the top-level `SignatureHelp` response
110112
over the one defined in `SignatureInformation`, following the LSP specification.
111113
"""
112-
import attrs
113114

114115
res = await self.request_signature_help(
115116
file_path,

0 commit comments

Comments
 (0)