migrate code style to Black

This commit is contained in:
Julian Hammer
2021-03-11 12:02:45 +01:00
parent 1ebe5ecfbd
commit 6204c90934
33 changed files with 3045 additions and 2960 deletions

View File

@@ -3,18 +3,18 @@
import sys
import unittest
sys.path[0:0] = ['.', '..']
sys.path[0:0] = [".", ".."]
suite = unittest.TestLoader().loadTestsFromNames(
[
'test_base_parser',
'test_parser_x86att',
'test_parser_AArch64',
'test_marker_utils',
'test_semantics',
'test_frontend',
'test_db_interface',
'test_kerncraftAPI',
'test_cli',
"test_base_parser",
"test_parser_x86att",
"test_parser_AArch64",
"test_marker_utils",
"test_semantics",
"test_frontend",
"test_db_interface",
"test_kerncraftAPI",
"test_cli",
]
)