Remove trailing comma which is only supported since Python 3.6

It's a syntax error in Python 3.5 and we run that in our CI.

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2021-02-16 15:09:27 +01:00
parent 79f2166c22
commit 0d241eda69

View file

@ -73,7 +73,7 @@ def test_case_for_key_type_not_supported(
verb: str, key_type: str, bits: int, verb: str, key_type: str, bits: int,
dependencies: List[str], dependencies: List[str],
*args: str, *args: str,
param_descr: str = '', param_descr: str = ''
) -> test_case.TestCase: ) -> test_case.TestCase:
"""Return one test case exercising a key creation method """Return one test case exercising a key creation method
for an unsupported key type or size. for an unsupported key type or size.