Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 17, 2024
1 parent 943d262 commit 4b92b4e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/femr/transforms/stanford.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,11 +239,13 @@ def join_consecutive_day_visits(patient: meds.Patient) -> meds.Patient:
measurements.append(m)
else:
measurements.append(m)
events.append({
'time' : event['time'],
'measurements' : measurements,
})
patient['events'] = events
events.append(
{
"time": event["time"],
"measurements": measurements,
}
)
patient["events"] = events
return patient


Expand Down

0 comments on commit 4b92b4e

Please sign in to comment.