Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble committed Jul 3, 2023
1 parent b9dabd7 commit 00e196f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion plugins/module_utils/dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,12 @@ def _waiter_model_data(self):
acceptors=[
dict(expected="ResourceNotFoundException", matcher="error", state="failure"),
# If there are no secondary indexes, simply return
dict(expected=False, matcher="path", state="success", argument="contains(keys(Table), `SecondaryIndexes`)"),
dict(
expected=False,
matcher="path",
state="success",
argument="contains(keys(Table), `SecondaryIndexes`)",
),
dict(
expected="ACTIVE",
matcher="pathAll",
Expand Down

0 comments on commit 00e196f

Please sign in to comment.