From 0d241eda69158978d3cd033b191bfaf2c457c6ff Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Tue, 16 Feb 2021 15:09:27 +0100 Subject: [PATCH] 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 --- tests/scripts/generate_psa_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/generate_psa_tests.py b/tests/scripts/generate_psa_tests.py index 4a4cd7095..aae92d659 100755 --- a/tests/scripts/generate_psa_tests.py +++ b/tests/scripts/generate_psa_tests.py @@ -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.