Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marknet15 committed Oct 13, 2021
1 parent a56d476 commit 5430991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/dynamodb_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 {})
Expand Down

0 comments on commit 5430991

Please sign in to comment.