Skip to content

Commit 2174044

Browse files
author
Astraea Quinn S
authored
Update src/aws_durable_execution_sdk_python/execution.py
1 parent deb1751 commit 2174044

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/aws_durable_execution_sdk_python/execution.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ def get_input_payload(self) -> str | None:
8282
return None
8383
if not (execution_details := operations.execution_details):
8484
return None
85-
if not (input_payload := execution_details.input_payload):
86-
return None
87-
return input_payload
85+
return execution_details.input_payload
8886

8987
def to_dict(self) -> MutableMapping[str, Any]:
9088
return {

0 commit comments

Comments
 (0)