From 51b0fc5b6ad2978f03d07b9c07734b14b420f4f6 Mon Sep 17 00:00:00 2001 From: mark-woolley Date: Wed, 13 Oct 2021 22:20:22 +0100 Subject: [PATCH] lint fix --- plugins/modules/dynamodb_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/dynamodb_table.py b/plugins/modules/dynamodb_table.py index a8725ab7d32..98d6fa632f9 100644 --- a/plugins/modules/dynamodb_table.py +++ b/plugins/modules/dynamodb_table.py @@ -878,7 +878,7 @@ def create_table(): hash_key_name = module.params.get('hash_key_name') billing_mode = module.params.get('billing_mode') - if billing_mode == None: + if billing_mode is None: billing_mode = "PROVISIONED" tags = ansible_dict_to_boto3_tag_list(module.params.get('tags') or {})