Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanSteinberg authored May 1, 2024
1 parent 042d7e6 commit dee4290
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,11 @@ The Python type signature for the schema is as follows:

Patient = TypedDict('Patient', {
'patient_id': int,
'static_measurements': List[Measurement],
'events': List[Event],
})

Event = TypedDict('Event',{
'time': datetime.datetime,
'measurements': List[Measurement],
})

Measurement = TypedDict('Measurement', {
'time': NotRequired[datetime.datetime],
'code': str,
'text_value': NotRequired[str],
'numeric_value': NotRequired[float],
Expand Down

0 comments on commit dee4290

Please sign in to comment.