1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-06-25 12:41:56 +03:00

Fix incorrect indentation

Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
Werner Lewis
2022-07-20 15:16:50 +01:00
parent f0910ae380
commit 92bb1cd8cb

View File

@ -156,7 +156,7 @@ class BignumOperation(BignumTarget):
def get_value_pairs(cls) -> Iterator[Tuple[str, ...]]:
"""Generate value pairs."""
for pair in list(
itertools.combinations(cls.input_vals, 2)
itertools.combinations(cls.input_vals, 2)
) + cls.input_cases:
yield pair