From 9dec35989875f7ae9fa9da53cb17d487897389e4 Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Mon, 8 Jun 2020 20:11:11 -0400 Subject: [PATCH] fix lint failures --- awx_collection/plugins/modules/tower_token.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx_collection/plugins/modules/tower_token.py b/awx_collection/plugins/modules/tower_token.py index d8300a048e..165590520d 100644 --- a/awx_collection/plugins/modules/tower_token.py +++ b/awx_collection/plugins/modules/tower_token.py @@ -150,7 +150,7 @@ def main(): ], # If we are state absent make sure one of existing_token or existing_token_id are present required_if=[ - [ 'state', 'absent', ('existing_token', 'existing_token_id'), True,], + ['state', 'absent', ('existing_token', 'existing_token_id'), True, ], ], )