Skip to content

Commit

Permalink
Change edwaittime,timeined dtypes - fixes #32
Browse files Browse the repository at this point in the history
  • Loading branch information
vvcb committed Mar 8, 2023
1 parent aea3a8c commit 311340b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avoidable_admissions/data/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,12 +299,12 @@ class EmergencyCareEpisodeSchema(pa.SchemaModel):
isin=[0, *nhsdd_snomed.edchiefcomplaint["members"]],
nullable=True,
)
edwaittime: Series[int] = pa.Field(
edwaittime: Series[float] = pa.Field(
description="Derived from NHS Data Model EMERGENCY CARE DATE SEEN FOR TREATMENT and EMERGENCY CARE TIME SEEN FOR TREATMENT and edarrivaldatetime",
nullable=True,
ge=0,
)
timeined: Series[int] = pa.Field(
timeined: Series[float] = pa.Field(
description="Derived from NHS Data Model NHS Data Model EMERGENCY CARE DEPARTURE DATE and EMERGENCY CARE DEPARTURE TIME and edarrivaldatetime",
nullable=True,
ge=0,
Expand Down

0 comments on commit 311340b

Please sign in to comment.