Skip to content

Commit 0d3612d

Browse files
committed
fix: update measuring_point_height to allow None value
1 parent adb6bce commit 0d3612d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

schemas/thing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ class WellResponse(BaseThingResponse):
262262
well_status: str | None
263263
open_status: str | None
264264
datalogger_suitability_status: str | None
265-
measuring_point_height: float
266-
measuring_point_height_is_assumed: bool = False
265+
measuring_point_height: float | None = None
266+
measuring_point_height_is_assumed: bool = False | None
267267
measuring_point_height_unit: str = "ft"
268268
measuring_point_description: str | None
269269
aquifers: list[dict] = []

0 commit comments

Comments
 (0)