mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Run black
This commit is contained in:
parent
1dc913c5c1
commit
461ef19a46
5 changed files with 85 additions and 25 deletions
|
@ -22,15 +22,39 @@ from .. import decompiler as decompile
|
|||
from .. import gir
|
||||
from ..ast_utils import AstNode, context, docs, validate
|
||||
from ..completions_utils import *
|
||||
from ..decompiler import (DecompileCtx, decompile_translatable, decompiler,
|
||||
escape_quote, truthy)
|
||||
from ..errors import (CodeAction, CompileError, CompileWarning,
|
||||
DeprecatedWarning, MultipleErrors, UpgradeWarning)
|
||||
from ..gir import (BoolType, Enumeration, ExternType, FloatType, GirType,
|
||||
IntType, StringType)
|
||||
from ..lsp_utils import (Completion, CompletionItemKind, DocumentSymbol,
|
||||
LocationLink, SemanticToken, SemanticTokenType,
|
||||
SymbolKind)
|
||||
from ..decompiler import (
|
||||
DecompileCtx,
|
||||
decompile_translatable,
|
||||
decompiler,
|
||||
escape_quote,
|
||||
truthy,
|
||||
)
|
||||
from ..errors import (
|
||||
CodeAction,
|
||||
CompileError,
|
||||
CompileWarning,
|
||||
DeprecatedWarning,
|
||||
MultipleErrors,
|
||||
UpgradeWarning,
|
||||
)
|
||||
from ..gir import (
|
||||
BoolType,
|
||||
Enumeration,
|
||||
ExternType,
|
||||
FloatType,
|
||||
GirType,
|
||||
IntType,
|
||||
StringType,
|
||||
)
|
||||
from ..lsp_utils import (
|
||||
Completion,
|
||||
CompletionItemKind,
|
||||
DocumentSymbol,
|
||||
LocationLink,
|
||||
SemanticToken,
|
||||
SemanticTokenType,
|
||||
SymbolKind,
|
||||
)
|
||||
from ..parse_tree import *
|
||||
|
||||
OBJECT_CONTENT_HOOKS = AnyOf()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue