Sort imports

This commit is contained in:
James Westman 2023-07-25 20:07:37 -05:00
parent 35ee058192
commit bfa2f56e1f
2 changed files with 2 additions and 2 deletions

View file

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

View file

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