Run isort

This commit is contained in:
gregorni 2023-08-30 17:57:45 +02:00
parent ae363ed60b
commit 949ee638f6
6 changed files with 26 additions and 86 deletions

View file

@ -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()