diff --git a/petastorm/unischema.py b/petastorm/unischema.py index ba9ef029..f5d9c3dd 100644 --- a/petastorm/unischema.py +++ b/petastorm/unischema.py @@ -352,9 +352,6 @@ def from_arrow_schema(cls, parquet_dataset, omit_unsupported_fields=True): unischema_fields.append(UnischemaField(column_name, np_type, field_shape, None, arrow_field.nullable)) return Unischema('inferred_schema', unischema_fields) - def __getattr__(self, item) -> Any: - return super().__getattribute__(item) - def dict_to_spark_row(unischema, row_dict): """Converts a single row into a spark Row object.