Skip to content

Commit ebc1adc

Browse files
committed
fix: formatting
1 parent f84e42e commit ebc1adc

File tree

1 file changed

+8
-2
lines changed
  • src/aws_durable_execution_sdk_python_testing/web

1 file changed

+8
-2
lines changed

src/aws_durable_execution_sdk_python_testing/web/handlers.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,8 +459,14 @@ def handle(self, parsed_route: Route, request: HTTPRequest) -> HTTPResponse:
459459

460460
max_results: str | None = self._parse_query_param(request, "maxResults")
461461
next_token: str | None = self._parse_query_param(request, "nextToken")
462-
include_execution_data_str: str | None = self._parse_query_param(request, "IncludeExecutionData")
463-
include_execution_data: bool = include_execution_data_str == "true" if include_execution_data_str else False
462+
include_execution_data_str: str | None = self._parse_query_param(
463+
request, "IncludeExecutionData"
464+
)
465+
include_execution_data: bool = (
466+
include_execution_data_str == "true"
467+
if include_execution_data_str
468+
else False
469+
)
464470

465471
history_response: GetDurableExecutionHistoryResponse = (
466472
self.executor.get_execution_history(

0 commit comments

Comments
 (0)