From 7bf1d4946e71cbbc6934e68dbb238ae740c72d23 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Tue, 16 Jun 2020 17:14:52 +0100 Subject: [PATCH] Fixed final lint issues Signed-off-by: Tom Page --- .../plugins/modules/tower_credential_input_source.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx_collection/plugins/modules/tower_credential_input_source.py b/awx_collection/plugins/modules/tower_credential_input_source.py index dcce387054..bc2cb85579 100644 --- a/awx_collection/plugins/modules/tower_credential_input_source.py +++ b/awx_collection/plugins/modules/tower_credential_input_source.py @@ -36,7 +36,7 @@ options: description: - A JSON or YAML string required: False - type: str + type: dict target_credential: description: - The credential which will have its input defined by this source @@ -80,7 +80,7 @@ def main(): input_field_name=dict(required=True), target_credential=dict(required=True), source_credential=dict(default=''), - metadata=dict(type=dict), + metadata=dict(type="dict"), state=dict(choices=['present', 'absent'], default='present'), )