Skip to content

Commit a95ae31

Browse files
committed
fixes
1 parent 2df8adb commit a95ae31

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lambdas/id_sync/src/record_processor.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def process_record(event_record: Dict[str, Any]) -> Dict[str, Any]:
3030
body = body_text
3131

3232
nhs_number = body.get("subject")
33-
# Reached
3433
logger.info("process record NHS number: %s", nhs_number)
3534
if nhs_number:
3635
return process_nhs_number(nhs_number)
@@ -90,7 +89,7 @@ def process_nhs_number(nhs_number: str) -> Dict[str, Any]:
9089
return response
9190

9291

93-
# Function to fetch PDS Patient details and IEDS Immunisation records. WORKS
92+
# Function to fetch PDS Patient details and IEDS Immunisation records.
9493
def fetch_pds_and_ieds_resources(nhs_number: str):
9594
logger.info("fetch_pds_and_ieds_resources: fetching for %s", nhs_number)
9695
try:

0 commit comments

Comments
 (0)