Skip to content

Commit b2f9e23

Browse files
author
Lucas McDonald
committed
m
1 parent 44c74a5 commit b2f9e23

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/encrypted/client.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -632,9 +632,8 @@ def _client_operation_logic(
632632
# and need to be converted from DDB-JSON to a standard dictionary before returning the response.
633633
if self._expect_standard_dictionaries:
634634
dbesdk_response = output_item_to_dict_transform_method(dbesdk_response)
635-
636-
# Clean up the expression builder for the next operation
637-
self._resource_to_client_shape_converter.expression_builder.reset()
635+
# Clean up the expression builder for the next operation
636+
self._resource_to_client_shape_converter.expression_builder.reset()
638637

639638
return dbesdk_response
640639

DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/encrypted/paginator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def _paginate_request(
187187
dbesdk_response = output_item_to_dict_transform_method(dbesdk_response)
188188

189189
yield dbesdk_response
190-
190+
191191
# Clean up the expression builder for the next operation
192192
self._resource_to_client_shape_converter.expression_builder.reset()
193193

0 commit comments

Comments
 (0)