Skip to content

Commit 271d2ea

Browse files
MESH-2092 update packages
1 parent 9f0748a commit 271d2ea

File tree

3 files changed

+160
-149
lines changed

3 files changed

+160
-149
lines changed

nhs_aws_helpers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def register_retry_handler(
233233
)
234234

235235
def on_response_received(**kwargs):
236-
if on_error is not None and kwargs.get("exception") or kwargs.get("parsed_response", {}).get("Error"):
236+
if (on_error is not None and kwargs.get("exception")) or kwargs.get("parsed_response", {}).get("Error"):
237237
assert on_error
238238
on_error(**kwargs)
239239

nhs_aws_helpers/fixtures.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
)
1818

1919
__all__ = [
20-
"temp_s3_bucket_session_fixture",
21-
"temp_s3_bucket_fixture",
22-
"temp_event_bus_fixture",
23-
"temp_queue_fixture",
24-
"temp_fifo_queue_fixture",
2520
"clone_schema",
2621
"temp_dynamodb_table",
22+
"temp_event_bus_fixture",
23+
"temp_fifo_queue_fixture",
24+
"temp_queue_fixture",
25+
"temp_s3_bucket_fixture",
26+
"temp_s3_bucket_session_fixture",
2727
]
2828

2929

0 commit comments

Comments
 (0)