mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Run isort
This commit is contained in:
parent
ae363ed60b
commit
949ee638f6
6 changed files with 26 additions and 86 deletions
|
@ -22,39 +22,15 @@ 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