mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Format using black
This commit is contained in:
parent
6a36d92380
commit
8fee46ec68
40 changed files with 975 additions and 610 deletions
|
@ -7,10 +7,16 @@ sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
|
|||
|
||||
from blueprintcompiler import tokenizer, parser, decompiler, gir
|
||||
from blueprintcompiler.completions import complete
|
||||
from blueprintcompiler.errors import PrintableError, MultipleErrors, CompileError, CompilerBugError
|
||||
from blueprintcompiler.errors import (
|
||||
PrintableError,
|
||||
MultipleErrors,
|
||||
CompileError,
|
||||
CompilerBugError,
|
||||
)
|
||||
from blueprintcompiler.tokenizer import Token, TokenType, tokenize
|
||||
from blueprintcompiler import utils
|
||||
|
||||
|
||||
@PythonFuzz
|
||||
def fuzz(buf):
|
||||
try:
|
||||
|
@ -29,6 +35,7 @@ def fuzz(buf):
|
|||
except UnicodeDecodeError:
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
# Make sure Gtk 4.0 is accessible, otherwise every test will fail on that
|
||||
# and nothing interesting will be tested
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue