File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1- from api_utils .api_step_chain import execute_step_chain_fhir as execute_step_chain
1+ from api_utils .api_step_chain import execute_step_chain
22from event .aws .client import dynamodb_client
33from event .environment import BaseEnvironment
44from event .logging .logger import setup_logger
Original file line number Diff line number Diff line change 1+ from http import HTTPStatus
12from typing import List
23
34from aws_lambda_powertools .utilities .data_classes import APIGatewayProxyEvent
@@ -28,7 +29,7 @@ def query_products(data, cache) -> List[CpmProduct]:
2829 results = cpm_product_repo .query_products_by_product_team (
2930 product_team_id = product_team_id
3031 )
31- return [result .state () for result in results ]
32+ return HTTPStatus . OK , [result .state () for result in results ]
3233
3334
3435steps = [
You can’t perform that action at this time.
0 commit comments