removed incorrect anomally catch

This commit is contained in:
Khalim Conn-Kowlessar 2026-03-12 17:27:40 +00:00
parent b64996cd89
commit 5e8847d028

View file

@ -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)