diff --git a/blueprintcompiler/ast_utils.py b/blueprintcompiler/ast_utils.py index 56501e7..ce15faf 100644 --- a/blueprintcompiler/ast_utils.py +++ b/blueprintcompiler/ast_utils.py @@ -22,7 +22,7 @@ from collections import ChainMap, defaultdict from functools import cached_property from .errors import * -from .lsp_utils import DocumentSymbol, SemanticToken, LocationLink +from .lsp_utils import DocumentSymbol, LocationLink, SemanticToken from .tokenizer import Range TType = T.TypeVar("TType") diff --git a/blueprintcompiler/main.py b/blueprintcompiler/main.py index 416db47..306dd7d 100644 --- a/blueprintcompiler/main.py +++ b/blueprintcompiler/main.py @@ -25,7 +25,7 @@ import sys import typing as T from . import interactive_port, parser, tokenizer -from .errors import CompilerBugError, CompileError, PrintableError, report_bug +from .errors import CompileError, CompilerBugError, PrintableError, report_bug from .gir import add_typelib_search_path from .lsp import LanguageServer from .outputs import XmlOutput