From 05f5fa5e28002ee2e74dcd41d8f7992f7f375d53 Mon Sep 17 00:00:00 2001 From: mandalkam Date: Thu, 12 Sep 2024 14:27:42 +0200 Subject: [PATCH] Fix rendering of single FHIR resource: fhir_operation_validate() now by object Validator() --- home/fhirvalidation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/fhirvalidation.py b/home/fhirvalidation.py index e853d0a..1916e7c 100644 --- a/home/fhirvalidation.py +++ b/home/fhirvalidation.py @@ -162,7 +162,7 @@ class Validator(): ) resource = r.json() - outcome = fhir_operation_validate(resource_type, resource, send_pretty=True) + outcome = self.fhir_operation_validate(resource_type, resource, send_pretty=True) render_validation_outcome(resource, outcome, resource_url=resource_url)