Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions moto/dynamodb/models/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def find_nested_key(
if (
current_key in dct
and isinstance(dct[current_key], list)
and len(dct[current_key]) >= idx
and len(dct[current_key]) > idx
):
value = [dct[current_key][idx]]
else:
Expand Down Expand Up @@ -96,7 +96,7 @@ def find_nested_key(
if (
current_key in dct
and isinstance(dct[current_key], list)
and len(dct[current_key]) >= idx
and len(dct[current_key]) > idx
):
pass
else:
Expand Down