From 0de6a894086f6f03375438d1a0b294e825482fc5 Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Wed, 19 Feb 2025 20:51:47 -0500 Subject: [PATCH] Add missing attribute in VTECHydroEvent --- lib/nexrad/vtec.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/nexrad/vtec.py b/lib/nexrad/vtec.py index 586b7c3..9f632ba 100644 --- a/lib/nexrad/vtec.py +++ b/lib/nexrad/vtec.py @@ -88,6 +88,7 @@ class VTECHydroEvent(): event = VTECHydroEvent() event.severity = match['severity'] event.cause = match['cause'] + event.record = match['record'] event.timestamp_start = parse_timestamp(match['time_start']) event.timestamp_end = parse_timestamp(match['time_end'])