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)