Skip to content

Commit

Permalink
Fix a missing type hint warning
Browse files Browse the repository at this point in the history
Signed-off-by: David Horstmann <[email protected]>
  • Loading branch information
davidhorstmann-arm committed Jan 24, 2023
1 parent 8431fe0 commit 4fc7e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scripts/generate_psa_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def make_test_case(
dependencies[i] = '!' + dep
tc.set_dependencies(dependencies)
tc.set_function(category.name.lower() + '_fail')
arguments = []
arguments = [] # type: List[str]
if kt:
key_material = kt.key_material(kt.sizes_to_test()[0])
arguments += [key_type, test_case.hex_string(key_material)]
Expand Down

0 comments on commit 4fc7e0e

Please sign in to comment.