Run black

This commit is contained in:
gregorni 2023-09-03 18:44:58 +02:00
parent 1dc913c5c1
commit 461ef19a46
5 changed files with 85 additions and 25 deletions

View file

@ -23,8 +23,13 @@ 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]