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 <[email protected]>
This commit is contained in:
Gilles Peskine
2021-02-17 14:58:29 +01:00
parent 79f2166c22
commit 0d241eda69
+1 -1
View File
@@ -73,7 +73,7 @@ def test_case_for_key_type_not_supported(
verb: str, key_type: str, bits: int,
dependencies: List[str],
*args: str,
param_descr: str = '',
param_descr: str = ''
) -> test_case.TestCase:
"""Return one test case exercising a key creation method
for an unsupported key type or size.