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:
parent
79f2166c22
commit
0d241eda69
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue