Use Python 3.5 style typing for dependencies
Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
parent
466f036326
commit
aaf3b79bbb
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ class BaseTarget(metaclass=ABCMeta):
|
|||
"""
|
||||
count = 0
|
||||
case_description = ""
|
||||
dependencies: List[str] = []
|
||||
dependencies = [] # type: List[str]
|
||||
target_basename = ""
|
||||
test_function = ""
|
||||
test_name = ""
|
||||
|
|
Loading…
Reference in a new issue