Fix ansible-test type hints.

This commit is contained in:
Matt Clay 2017-07-28 16:17:56 -07:00
parent 0a2cdb2585
commit f6d7fc548e
4 changed files with 7 additions and 7 deletions

View file

@ -312,7 +312,7 @@ def walk_test_targets(path=None, module_path=None, extensions=None, prefix=None)
def analyze_integration_target_dependencies(integration_targets):
"""
:type: list[IntegrationTarget]
:type integration_targets: list[IntegrationTarget]
:rtype: dict[str,set[str]]
"""
hidden_role_target_names = set(t.name for t in integration_targets if t.type == 'role' and 'hidden/' in t.aliases)