Slightly reformat the solution

This commit is contained in:
Ilya Shmygol 2019-12-11 15:06:49 +01:00
parent 6ea60012fc
commit 1d0de934e5

View File

@ -481,7 +481,9 @@ class DynamoHandler(BaseResponse):
] ]
elif "begins_with" in range_key_expression: elif "begins_with" in range_key_expression:
range_comparison = "BEGINS_WITH" range_comparison = "BEGINS_WITH"
range_values = [value_alias_map[range_key_expression_components[-1]]] range_values = [
value_alias_map[range_key_expression_components[-1]]
]
else: else:
range_values = [value_alias_map[range_key_expression_components[2]]] range_values = [value_alias_map[range_key_expression_components[2]]]
else: else: