From e41809b59d81f22a9dab8eaa8d1cd48dc85e84f2 Mon Sep 17 00:00:00 2001 From: atuonufure Date: Fri, 1 Sep 2023 08:19:59 +0200 Subject: [PATCH] Update _getDateTimeInt at FP_Time --- fhirpathpy/engine/nodes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fhirpathpy/engine/nodes.py b/fhirpathpy/engine/nodes.py index 558d720..4fcbb34 100644 --- a/fhirpathpy/engine/nodes.py +++ b/fhirpathpy/engine/nodes.py @@ -336,6 +336,7 @@ def _getDateTimeInt(self): hours=self._pyTimeObject.hour, minutes=self._pyTimeObject.minute, seconds=self._pyTimeObject.second, + microseconds=self._pyTimeObject.microsecond, ).total_seconds() return None