Skip to content

Commit 5fabcd1

Browse files
ksmuczynskiCopilot
andauthored
fix(well-inventory): stop defaulting missing observation data quality to Unknown
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent f482b5a commit 5fabcd1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

services/well_inventory_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ def _add_csv_row(session: Session, group: Group, model: WellInventoryRow, user)
949949
nma_data_quality=(
950950
model.data_quality.value
951951
if hasattr(model.data_quality, "value")
952-
else (model.data_quality or "Unknown")
952+
else model.data_quality or None
953953
),
954954
notes=model.water_level_notes,
955955
)

0 commit comments

Comments
 (0)