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

@ -23,13 +23,8 @@ import typing as T
from enum import Enum
from .ast_utils import AstNode
from .errors import (
CompileError,
CompilerBugError,
CompileWarning,
UnexpectedTokenError,
assert_true,
)
from .errors import (CompileError, CompilerBugError, CompileWarning,
UnexpectedTokenError, assert_true)
from .tokenizer import Range, Token, TokenType
SKIP_TOKENS = [TokenType.COMMENT, TokenType.WHITESPACE]