Skip to content

Commit ae8d086

Browse files
committed
tidy
1 parent ddc1c0b commit ae8d086

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backend/src/fhir_controller.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,10 @@ def delete_immunization(self, aws_event):
391391
except UnauthorizedVaxError as unauthorized:
392392
return self.create_response(403, unauthorized.to_operation_outcome())
393393

394-
def search_immunizations(self, aws_event: APIGatewayProxyEventV1) -> dict:
394+
def search_immunizations(self, aws_event: APIGatewayProxyEventV1) -> dict:
395395
if response := self.authorize_request(aws_event):
396396
return response
397-
397+
398398
try:
399399
search_params = process_search_params(process_params(aws_event))
400400
except ParameterException as e:
@@ -428,7 +428,7 @@ def search_immunizations(self, aws_event: APIGatewayProxyEventV1) -> dict:
428428
except UnauthorizedVaxError as unauthorized:
429429
return self.create_response(403, unauthorized.to_operation_outcome())
430430
# Check vaxx type permissions on the existing record - end
431-
431+
432432
result = self.fhir_service.search_immunizations(
433433
search_params.patient_identifier,
434434
vax_type_perm,

0 commit comments

Comments
 (0)