From b88e7beeac7eb459d7f354bc299d4bf03b02e63e Mon Sep 17 00:00:00 2001 From: Ethan Steinberg Date: Mon, 20 May 2024 07:29:44 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b84b352..b3e841e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Patient = TypedDict('Patient', { }) Event = TypedDict('Event',{ - 'time': NotRequired[datetime.datetime], + 'time': NotRequired[datetime.datetime], # Static events will have a null timestamp here 'code': str, 'text_value': NotRequired[str], 'numeric_value': NotRequired[float],