mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Run black
This commit is contained in:
parent
1dc913c5c1
commit
461ef19a46
5 changed files with 85 additions and 25 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue