Returns a copy of the `SplitInfo` with updated attributes.
(self, **kwargs: Any)
| 249 | return sorted(self.filename_template.sharded_filepaths(self.num_shards)) |
| 250 | |
| 251 | def replace(self, **kwargs: Any) -> SplitInfo: |
| 252 | """Returns a copy of the `SplitInfo` with updated attributes.""" |
| 253 | return dataclasses.replace(self, **kwargs) |
| 254 | |
| 255 | def file_spec( |
| 256 | self, file_format: str | file_adapters.FileFormat |
no outgoing calls