1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Remove unused imports

Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
Werner Lewis
2022-09-02 12:57:37 +01:00
parent 0d07e86a44
commit e53be35c09
2 changed files with 3 additions and 3 deletions

View File

@ -188,8 +188,8 @@ def main(args, generator_class: Type[TestGenerator] = TestGenerator):
# ``generate_xxx_tests.py - $targets`` and it works uniformly whether
# ``$targets`` is empty or not.
options.targets = [os.path.basename(re.sub(r'\.data\Z', r'', target))
for target in options.targets
if target != '-']
for target in options.targets
if target != '-']
else:
options.targets = sorted(generator.targets)
for target in options.targets:

View File

@ -58,7 +58,7 @@ import itertools
import sys
from abc import ABCMeta, abstractmethod
from typing import Callable, Dict, Iterable, Iterator, List, Tuple, TypeVar, cast
from typing import Iterator, List, Tuple, TypeVar, cast
import scripts_path # pylint: disable=unused-import
from mbedtls_dev import test_case