mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-06-22 23:19:25 -04:00
Fix formatting
This commit is contained in:
parent
dc42556487
commit
6522421251
5 changed files with 26 additions and 22 deletions
|
@ -97,12 +97,14 @@ class Completion:
|
|||
"kind": self.kind,
|
||||
"tags": [CompletionItemTag.Deprecated] if self.deprecated else None,
|
||||
"detail": self.signature,
|
||||
"documentation": {
|
||||
"kind": "markdown",
|
||||
"value": self.docs,
|
||||
}
|
||||
if self.docs
|
||||
else None,
|
||||
"documentation": (
|
||||
{
|
||||
"kind": "markdown",
|
||||
"value": self.docs,
|
||||
}
|
||||
if self.docs
|
||||
else None
|
||||
),
|
||||
"deprecated": self.deprecated,
|
||||
"sortText": self.sort_text,
|
||||
"insertText": insert_text,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue