Closed karlhigley closed 1 year ago
dataclasses.replace is equivalent to what we were already doing since it creates a copy and modifies the copy, but it's shorter, easier to read and write, and less brittle when we add new fields to ColumnSchema.
dataclasses.replace
ColumnSchema
https://nvidia-merlin.github.io/core/review/pr-194
dataclasses.replace
is equivalent to what we were already doing since it creates a copy and modifies the copy, but it's shorter, easier to read and write, and less brittle when we add new fields toColumnSchema
.