mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-23 16:20:49 +00:00
Fix pylint errors
Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
parent
41c316d3b2
commit
fd9264e65b
@ -125,8 +125,11 @@ def main(library_build_dir: str):
|
||||
)
|
||||
test = -1
|
||||
unexpected_successes = set(EXPECTED_FAILURES)
|
||||
expected_failures = []
|
||||
unexpected_failures = []
|
||||
expected_failures = [] # type: List[int]
|
||||
unexpected_failures = [] # type: List[int]
|
||||
if proc.stdout is None:
|
||||
return 1
|
||||
|
||||
for line in proc.stdout:
|
||||
print(line, end='')
|
||||
match = test_re.match(line)
|
||||
|
Loading…
x
Reference in New Issue
Block a user