From 5e8847d02812dbbc8741f4d2e17aca4351951dca Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Thu, 12 Mar 2026 17:27:40 +0000 Subject: [PATCH] removed incorrect anomally catch --- etl/epc/Record.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/etl/epc/Record.py b/etl/epc/Record.py index 04333b57..84d4d19a 100644 --- a/etl/epc/Record.py +++ b/etl/epc/Record.py @@ -626,10 +626,6 @@ class EPCRecord: # Ignore keys that are not part of the dataclass schema continue - if value in DATA_ANOMALY_MATCHES: - setattr(self, key, None) - continue - try: cast_value = self._cast_value(value, field_map[key].type) setattr(self, key, cast_value)