Revert "Run isort and black"

This reverts commit 87a8ae96d8.
This commit is contained in:
gregorni 2023-07-09 11:34:39 +02:00
parent 87a8ae96d8
commit 55b6cac27d
42 changed files with 111 additions and 109 deletions

View file

@ -18,35 +18,36 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
from .. import decompiler as decompile
from .. import gir
from ..ast_utils import AstNode, context, docs, validate
from ..ast_utils import AstNode, validate, docs, context
from ..errors import (
CompileError,
MultipleErrors,
UpgradeWarning,
CompileWarning,
CodeAction,
)
from ..completions_utils import *
from .. import decompiler as decompile
from ..decompiler import (
DecompileCtx,
decompile_translatable,
decompiler,
escape_quote,
truthy,
)
from ..errors import (
CodeAction,
CompileError,
CompileWarning,
MultipleErrors,
UpgradeWarning,
decompile_translatable,
)
from ..gir import (
StringType,
BoolType,
Enumeration,
ExternType,
IntType,
FloatType,
GirType,
IntType,
StringType,
Enumeration,
ExternType,
)
from ..lsp_utils import Completion, CompletionItemKind, SemanticToken, SemanticTokenType
from ..parse_tree import *
OBJECT_CONTENT_HOOKS = AnyOf()
LITERAL = AnyOf()