File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ class LabTestTableMapping(OtherTable):
6363class BedrockGIMapping (BaseModel ):
6464 Project : ProjectTableMapping
6565 Location : LocationTableMapping
66- InSitu : list [InSituTestTableMapping ]
66+ InSitu : list [InSituTestTableMapping ] = []
6767 Sample : Union [SampleTableMapping , None ] = None
6868 Lab : list [LabTestTableMapping ] = []
6969 Other : list [OtherTable ] = []
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ class InSituTestSchema(pa.DataFrameModel):
7070 # foreign_key="location.location_uid"
7171 )
7272 depth_to_top : Optional [Series [float ]] = pa .Field (nullable = True , coerce = True , ge = 0 )
73- depth_to_base : Optional [Series [float ]] = pa .Field (nullable = True , coerce = True , gt = 0 )
73+ depth_to_base : Optional [Series [float ]] = pa .Field (nullable = True , coerce = True , ge = 0 )
7474
7575 # https://pandera.readthedocs.io/en/stable/dataframe_models.html#dataframe-checks
7676 # Check depth column completeness such that either shapely.Point's or
You can’t perform that action at this time.
0 commit comments